Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
Git Spice Help MCP Server_get-world-weather | - |
MCP Task Manager Server_createProject | Creates a new, empty project entry in the Task Management Server database. This tool is used by clients (e.g., AI agents) to initiate a new workspace for tasks. It returns the unique identifier (UUID) assigned to the newly created project. An optional name can be provided; otherwise, a default name including a timestamp will be generated. |
MCP Task Manager Server_addTask | Adds a new task to a specified project within the Task Management Server. Requires the project ID and a description for the task. Optionally accepts a list of dependency task IDs, a priority level, and an initial status. Returns the full details of the newly created task upon success. |
MCP Task Manager Server_listTasks | Retrieves a list of tasks for a specified project. Allows optional filtering by task status ('todo', 'in-progress', 'review', 'done'). Provides an option to include nested subtasks directly within their parent task objects in the response. Returns an array of task objects. |
MCP Task Manager Server_showTask | Retrieves the full details of a single, specific task, including its dependencies and direct subtasks. Requires the project ID and the task ID. Returns a task object containing all details if found. |
MCP Task Manager Server_setTaskStatus | Updates the status ('todo', 'in-progress', 'review', 'done') for one or more tasks within a specified project. Requires the project ID, an array of task IDs (1-100), and the target status. Verifies all tasks exist in the project before updating. Returns the count of updated tasks. |
MCP Task Manager Server_expandTask | Breaks down a specified parent task into multiple subtasks based on provided descriptions. Requires the project ID, the parent task ID, and an array of descriptions for the new subtasks. Optionally allows forcing the replacement of existing subtasks using the 'force' flag. Returns the updated parent task details, including the newly created subtasks. |
MCP Task Manager Server_getNextTask | Identifies and returns the next actionable task within a specified project. A task is considered actionable if its status is 'todo' and all its dependencies (if any) have a status of 'done'. If multiple tasks are ready, the one with the highest priority ('high' > 'medium' > 'low') is chosen. If priorities are equal, the task created earliest is chosen. Returns the full details of the next task, or null if no task is currently ready. |
MCP Task Manager Server_exportProject | Exports the complete data set for a specified project as a JSON string. This includes project metadata, all tasks (hierarchically structured), and their dependencies. Requires the project ID. The format is fixed to JSON for V1. Returns the JSON string representing the project data. |
MCP Task Manager Server_importProject | Creates a new project by importing data from a JSON string. The JSON data must conform to the structure previously generated by the 'exportProject' tool. Performs validation on the input data (parsing, basic structure, size limit). Returns the unique project_id of the newly created project upon success. |
MCP Task Manager Server_updateTask | Updates specific details of an existing task within a project. Requires the project ID and task ID. Allows updating description, priority, and/or dependencies. At least one optional field (description, priority, dependencies) must be provided. Returns the full details of the updated task upon success. |
MCP Task Manager Server_deleteTask | Deletes one or more tasks within a specified project. Requires the project ID and an array of task IDs to delete. Note: Deleting a task also deletes its subtasks and dependency links due to database cascade rules. Returns the count of successfully deleted tasks. |
MCP Task Manager Server_deleteProject | Permanently deletes a project and ALL associated tasks and dependencies. Requires the project ID. This is a highly destructive operation and cannot be undone. Returns a success confirmation upon completion. |
YouTube Music MCP_searchTrack | Search for tracks on YouTube Music by name. |
YouTube Music MCP_playTrack | Search for a track on YouTube Music and open the top result in the default browser. |
Playwright MCP Server_playwright_custom_user_agent | Set a custom User Agent for the browser |
Playwright MCP Server_playwright_get_visible_text | Get the visible text content of the current page |
Playwright MCP Server_playwright_get_visible_html | Get the HTML content of the current page |
Playwright MCP Server_playwright_go_back | Navigate back in browser history |
Playwright MCP Server_playwright_go_forward | Navigate forward in browser history |
Playwright MCP Server_start_codegen_session | Start a new code generation session to record Playwright actions |
Playwright MCP Server_end_codegen_session | End a code generation session and generate the test file |
Playwright MCP Server_get_codegen_session | Get information about a code generation session |
Playwright MCP Server_clear_codegen_session | Clear a code generation session without generating a test |
Playwright MCP Server_playwright_navigate | Navigate to a URL |
Playwright MCP Server_playwright_screenshot | Take a screenshot of the current page or a specific element |
Playwright MCP Server_playwright_click | Click an element on the page |
Playwright MCP Server_playwright_iframe_click | Click an element in an iframe on the page |
Playwright MCP Server_playwright_fill | fill out an input field |
Playwright MCP Server_playwright_select | Select an element on the page with Select tag |
Playwright MCP Server_playwright_hover | Hover an element on the page |
Playwright MCP Server_playwright_evaluate | Execute JavaScript in the browser console |
Playwright MCP Server_playwright_console_logs | Retrieve console logs from the browser with filtering options |
Playwright MCP Server_playwright_close | Close the browser and release all resources |
Playwright MCP Server_playwright_get | Perform an HTTP GET request |
Playwright MCP Server_playwright_post | Perform an HTTP POST request |
Playwright MCP Server_playwright_put | Perform an HTTP PUT request |
Playwright MCP Server_playwright_patch | Perform an HTTP PATCH request |
Playwright MCP Server_playwright_delete | Perform an HTTP DELETE request |
Playwright MCP Server_playwright_expect_response | Ask Playwright to start waiting for a HTTP response. This tool initiates the wait operation but does not wait for its completion. |
Playwright MCP Server_playwright_assert_response | Wait for and validate a previously initiated HTTP response wait operation. |
Playwright MCP Server_playwright_drag | Drag an element to a target location |
Playwright MCP Server_playwright_press_key | Press a keyboard key |
Playwright MCP Server_playwright_save_as_pdf | Save the current page as a PDF file |
MindBridge MCP Server_listProviders | List all configured LLM providers and their available models |
MindBridge MCP Server_listReasoningModels | List all available models that support reasoning capabilities |
MindBridge MCP Server_getSecondOpinion | Get responses from various LLM providers |
mcp-server-gitlab_Gitlab Accept MR Tool | - |
mcp-server-gitlab_Gitlab Create MR Comment Tool | - |
mcp-server-gitlab_Gitlab Create MR Tool | Merge Request assignee reviewers |
mcp-server-gitlab_Gitlab Get User Tasks Tool | - |
mcp-server-gitlab_Gitlab Raw API Tool | GitLab REST API |
mcp-server-gitlab_Gitlab Search Project Details Tool | - |
mcp-server-gitlab_Gitlab Search User Projects Tool | - |
mcp-server-gitlab_Gitlab Update MR Tool | Merge Request assignee reviewers |
Cursor10x MCP_generateBanner | Generates a banner containing memory system statistics and status |
Cursor10x MCP_checkHealth | Checks the health of the memory system and its database |
Cursor10x MCP_initConversation | Initializes a conversation by storing the user message, generating a banner, and retrieving context in one operation |
Cursor10x MCP_endConversation | Ends a conversation by storing the assistant message, recording a milestone, and logging an episode in one operation |
Cursor10x MCP_storeUserMessage | Stores a user message in the short-term memory |
Cursor10x MCP_storeAssistantMessage | Stores an assistant message in the short-term memory |
Cursor10x MCP_trackActiveFile | Tracks an active file being accessed by the user |
Cursor10x MCP_getRecentMessages | Retrieves recent messages from the short-term memory |
Cursor10x MCP_getActiveFiles | Retrieves active files from the short-term memory |
Cursor10x MCP_storeMilestone | Stores a project milestone in the long-term memory |
Cursor10x MCP_storeDecision | Stores a project decision in the long-term memory |
Cursor10x MCP_storeRequirement | Stores a project requirement in the long-term memory |
Cursor10x MCP_recordEpisode | Records an episode (action) in the episodic memory |
Cursor10x MCP_getRecentEpisodes | Retrieves recent episodes from the episodic memory |
Cursor10x MCP_getComprehensiveContext | Retrieves comprehensive context from all memory systems |
Cursor10x MCP_getMemoryStats | Retrieves statistics about the memory system |
Google OCR_ocr | |
Postgres MCP_analyze_workload_indexes | Analyze frequently executed queries in the database and recommend optimal indexes |
Postgres MCP_list_schemas | List all schemas in the database |
Postgres MCP_list_objects | List objects in a schema |
Postgres MCP_get_object_details | Show detailed information about a database object |
Postgres MCP_explain_query | Explains the execution plan for a SQL query, showing how the database will execute it and provides detailed cost estimates. |
Postgres MCP_analyze_query_indexes | Analyze a list of (up to 10) SQL queries and recommend optimal indexes |
Postgres MCP_analyze_db_health | Analyzes database health. Here are the available health checks:
|
Postgres MCP_get_top_queries | Reports the slowest SQL queries based on execution time, using data from the 'pg_stat_statements' extension. |
Postgres MCP_execute_sql | Execute any SQL query |
deep-directory-tree-mcp_get_deep_directory_tree | Get deep directory tree |
Unleash MCP (Feature Toggle)_getFlag | Get detailed information about a feature flag |
Unleash MCP (Feature Toggle)_createFlag | Create a new feature flag in an Unleash project |
Unleash MCP (Feature Toggle)_updateFlag | Update an existing feature flag in an Unleash project |
Unleash MCP (Feature Toggle)_patchFlag | Modify specific properties of an existing feature flag in an Unleash project using JSON Patch operations |
Unleash MCP (Feature Toggle)_addStrategy | Add a strategy to a feature flag in a specific environment |
Unleash MCP (Feature Toggle)_updateStrategy | Update a strategy configuration for a feature flag in the specified environment |
Unleash MCP (Feature Toggle)_deleteStrategy | Delete a strategy configuration from a feature flag in the specified environment |
Unleash MCP (Feature Toggle)_setStrategySortOrder | Set the sort order of strategies for a feature flag in a specific environment |
Unleash MCP (Feature Toggle)_getProjectFeatures | Get all features for a specific project from the Unleash repository |
Unleash MCP (Feature Toggle)_getProjectFeature | Get detailed information about a feature flag in a specific project |
Unleash MCP (Feature Toggle)_archiveFlag | Archive a feature flag in a specific project |
Unleash MCP (Feature Toggle)_validateFeatureName | Validate if a feature flag name is valid and available for use |
Unleash MCP (Feature Toggle)_getProjects | Get a list of all projects |
Unleash MCP (Feature Toggle)_listFlags | Get a list of all feature flags |
Unleash MCP (Feature Toggle)_getFeatureTypes | Get a list of all feature types with their descriptions and lifetimes |
Unleash MCP (Feature Toggle)_getEnvironments | Get a list of all environments configured in Unleash |
Unleash MCP (Feature Toggle)_getFeatureTags | Get a list of all tags for a specific feature |
Unleash MCP (Feature Toggle)_addFeatureTag | Add a tag to a feature flag |
Unleash MCP (Feature Toggle)_enableFlag | Enables a feature flag in the specified environment |
Unleash MCP (Feature Toggle)_disableFlag | Disables a feature flag in the specified environment |
Unleash MCP (Feature Toggle)_markFeaturesStale | Marks features as stale or not stale in the specified project |
mysql_mcp_server_execute_sql | MySQL5.6sSQL |
mysql_mcp_server_get_chinese_initials | - |
mysql_mcp_server_get_table_name | - |
mysql_mcp_server_get_table_desc | , |
mysql_mcp_server_get_table_index | , |
Raindrop.io_getHighlightsByCollection | Get highlights for bookmarks in a specific collection |
Raindrop.io_createHighlight | Create a new highlight for a bookmark |
Raindrop.io_getCollection | Get a specific collection by ID |
Raindrop.io_getCollections | Get all collections |
Raindrop.io_createCollection | Create a new collection |
Raindrop.io_updateCollection | Update an existing collection |
Raindrop.io_deleteCollection | Delete a collection |
Raindrop.io_shareCollection | Share a collection with others |
Raindrop.io_mergeCollections | Merge multiple collections into one target collection |
Raindrop.io_removeEmptyCollections | Remove all empty collections |
Raindrop.io_emptyTrash | Empty the trash by permanently deleting all raindrops in it |
Raindrop.io_getBookmark | Get a specific bookmark by ID |
Raindrop.io_getBookmarks | Get bookmarks with optional filtering |
Raindrop.io_updateHighlight | Update an existing highlight |
Raindrop.io_searchBookmarks | Search bookmarks with advanced filters |
Raindrop.io_createBookmark | Create a new bookmark |
Raindrop.io_updateBookmark | Update an existing bookmark |
Raindrop.io_deleteBookmark | Delete a bookmark |
Raindrop.io_batchUpdateBookmarks | Update multiple bookmarks at once |
Raindrop.io_bulkMoveBookmarks | Move multiple bookmarks to another collection |
Raindrop.io_bulkTagBookmarks | Add or remove tags from multiple bookmarks |
Raindrop.io_batchDeleteBookmarks | Delete multiple bookmarks at once |
Raindrop.io_setReminder | Set a reminder for a bookmark |
Raindrop.io_deleteReminder | Delete a reminder from a bookmark |
Raindrop.io_getTags | Get all tags |
Raindrop.io_renameTag | Rename a tag across all bookmarks or in a specific collection |
Raindrop.io_deleteTag | Remove a tag from all bookmarks or in a specific collection |
Raindrop.io_mergeTags | Merge multiple tags into one destination tag |
Raindrop.io_deleteTags | Delete tags from all bookmarks |
Raindrop.io_getHighlights | Get highlights for a specific bookmark |
Raindrop.io_getAllHighlights | Get all highlights across all bookmarks |
Raindrop.io_deleteHighlight | Delete a highlight |
Raindrop.io_getUserInfo | Get user information |
Raindrop.io_getUserStats | Get user statistics |
Raindrop.io_getImportStatus | Check the status of an ongoing import |
Raindrop.io_getExportStatus | Check the status of an ongoing export |
Raindrop.io_exportBookmarks | Export bookmarks in various formats |
MCP Server for Google Cloud Healthcare API_get-drug-info | Get Drug details by a generic name |
MCP Server for Google Cloud Healthcare API_find_patient | Search for a patient by demographics |
MCP Server for Google Cloud Healthcare API_get_patient_observations | Get observations (vitals, labs) for a patient |
MCP Server for Google Cloud Healthcare API_get_patient_conditions | Get medical conditions/diagnoses for a patient |
MCP Server for Google Cloud Healthcare API_get_patient_medications | Get medication orders for a patient |
MCP Server for Google Cloud Healthcare API_get_patient_encounters | Get healthcare encounters/visits for a patient |
MCP Server for Google Cloud Healthcare API_get_patient_allergies | Get allergies and intolerances for a patient |
MCP Server for Google Cloud Healthcare API_get_patient_procedures | Get procedures performed on a patient |
MCP Server for Google Cloud Healthcare API_get_patient_careplans | Get care plans for a patient |
MCP Server for Google Cloud Healthcare API_get_vital_signs | Get patient's vital signs history |
MCP Server for Google Cloud Healthcare API_get_lab_results | Get patient's lab results |
MCP Server for Google Cloud Healthcare API_get_medications_history | Get patient's medication history including changes |
MCP Server for Google Cloud Healthcare API_get_appointments | Get patient's Appointments |
MCP Server for Google Cloud Healthcare API_search-pubmed | Search PubMed for medical literature |
MCP Server for Google Cloud Healthcare API_search-trials | Search ClinicalTrials.gov for relevant studies |
MCP Notes_log | Create or update today's daily log file. Optionally add notes to the log. |
MCP Notes_sticky | |
MCP Notes_rollup | |
MCP Notes_write_note | Create a new note or overwrite an existing note with content. Path should be relative to your notes directory. Optionally include tags that will be merged with any existing tags in the note. |
MCP Notes_search_files | Recursively search for files and directories matching a pattern in your notes directory. The search is case-insensitive and matches partial names. Returns full paths to all matching items. Great for finding notes when you don't know their exact location. |
MCP Notes_read_note | Read the complete contents of a note file from your notes directory. Specify the path relative to your notes directory (e.g., 'Log/2023-01-01.md'). Returns the full text content of the note file. |
MCP Notes_read_multiple_notes | Read the contents of multiple note files simultaneously. Specify paths relative to your notes directory (e.g., ['Log/2023-01-01.md', 'Rollups/2023-01-01-rollup.md']). Returns each file's content with its path as a reference. |
MCP Notes_list_directory | List the contents of a directory in your notes. Shows all files and directories with clear labels. Specify path relative to your notes directory (e.g., 'Log' or 'Rollups'). |
MCP Notes_create_directory | Create a new directory in your notes. Can create nested directories in one operation. Path should be relative to your notes directory. |
markdown-to-html_markdown_to_html | Convert Markdown to HTML |
Custom Context MCP Server_group-text-by-json | Gives a prompt text for AI to group text based on JSON placeholders. This tool accepts a JSON template with placeholders. |
Custom Context MCP Server_text-to-json | Converts groupped text from group-text-by-json tool to JSON. This tool accepts a JSON template with placeholders and groupped text from group-text-by-json tool. |
whistle-mcp_renameValue | - |
whistle-mcp_getRules | & |
whistle-mcp_createRule | - |
whistle-mcp_updateRule | - |
whistle-mcp_renameRule | - |
whistle-mcp_deleteRule | - |
whistle-mcp_enableRule | - |
whistle-mcp_disableRule | - |
whistle-mcp_createGroup | - |
whistle-mcp_renameGroup | - |
whistle-mcp_deleteGroup | - |
whistle-mcp_addRuleToGroup | - |
whistle-mcp_removeRuleFromGroup | - |
whistle-mcp_getAllValues | - |
whistle-mcp_createValuesGroup | - |
whistle-mcp_createValue | - |
whistle-mcp_updateValue | - |
whistle-mcp_renameValueGroup | - |
whistle-mcp_deleteValue | - |
whistle-mcp_deleteValueGroup | - |
whistle-mcp_addValueToGroup | - |
whistle-mcp_removeValueFromGroup | - |
whistle-mcp_getWhistleStatus | whistle |
whistle-mcp_toggleProxy | whistle |
whistle-mcp_toggleHttpInterception | HTTP |
whistle-mcp_toggleHttpsInterception | HTTPS |
whistle-mcp_toggleHttp2 | HTTP/2 |
whistle-mcp_toggleMultiRuleMode | - |
whistle-mcp_getInterceptInfo | URL(/base64) |
whistle-mcp_replayRequest | whistle(, getInterceptInfo) |
whistle-mcp_setAllRulesState | / |
whistle-mcp_getCurrentTimestamp | - |
PocketBase MCP Server_fetch_record | Fetch a single record from a PocketBase collection by ID. |
PocketBase MCP Server_list_records | List records from a PocketBase collection. Supports filtering, sorting, pagination, and expansion. |
PocketBase MCP Server_create_record | Create a new record in a PocketBase collection. |
PocketBase MCP Server_update_record | Update an existing record in a PocketBase collection by ID. |
PocketBase MCP Server_get_collection_schema | Get the schema (fields, rules, etc.) of a PocketBase collection. |
PocketBase MCP Server_list_collections | List all collections in the PocketBase instance. |
PocketBase MCP Server_upload_file | Upload a file (provided as content string) to a PocketBase collection record field. |
PocketBase MCP Server_download_file | Get the URL to download a file from a PocketBase collection record field. |
PocketBase MCP Server_set_migrations_directory | Set the directory where migration files will be created and read from. |
PocketBase MCP Server_create_migration | Create a new, empty PocketBase migration file with a timestamped name. |
PocketBase MCP Server_create_collection_migration | Create a migration file specifically for creating a new PocketBase collection. |
PocketBase MCP Server_add_field_migration | Create a migration file for adding a field to an existing collection. |
PocketBase MCP Server_list_migrations | List all migration files found in the PocketBase migrations directory. |
PocketBase MCP Server_apply_migration | Apply a specific migration file. |
PocketBase MCP Server_revert_migration | Revert a specific migration file. |
PocketBase MCP Server_apply_all_migrations | Apply all pending migrations. |
PocketBase MCP Server_revert_to_migration | Revert migrations up to a specific target. |
PocketBase MCP Server_list_logs | List API request logs from PocketBase with filtering, sorting, and pagination. |
PocketBase MCP Server_get_log | Get a single API request log by ID. |
PocketBase MCP Server_get_logs_stats | Get API request logs statistics with optional filtering. |
302AI Sandbox MCP Server_writeSandboxFiles | Import files from public URLs into a sandbox. Supports batch import of multiple files. If the target file already exists, it will be overwritten. If the target directory doesn't exist, it will be automatically created. You must create a sandbox before calling this tool. |
302AI Sandbox MCP Server_directRunCode | Automatically creates a sandbox, executes code, and immediately destroys the sandbox after execution. Optionally exports sandbox files (compresses multiple files into a zip archive if there are multiple files in the specified path, or exports a single file directly). Recommended for use cases that don't require continuous sandbox operations. |
302AI Sandbox MCP Server_listSandboxFiles | List files and directories at specified paths within a sandbox. Supports batch queries with multiple paths. This operation can be used before downloadSandboxFiles to check if the file exists. |
302AI Sandbox MCP Server_downloadSandboxFiles | Export files from a sandbox directory or file path to downloadable urls. Supports batch export of multiple directories or files. When exporting directories, only common file formats are included (documents, images, audio, video, compressed files, web files, and programming language files). |
302AI Sandbox MCP Server_runCode | Run code on a specific sandbox. This returns text output only. For operations that generate files, you'll need to use separate file viewing and export endpoints. Default file saving path is /home/user. |
302AI Sandbox MCP Server_runCommand | Run a command line command on a specific linux sandbox. This returns text output only. For operations that generate files, you'll need to use separate file viewing and download endpoints. |
302AI Sandbox MCP Server_listSandboxes | Query the list of sandboxes associated with the current API key. If no parameters are passed, all current sandboxes will be returned. |
302AI Sandbox MCP Server_killSandbox | Destroy a sandbox by its ID. |
302AI Sandbox MCP Server_createSandbox | Create a Linux sandbox that can execute code, run commands, upload and download files, and has complete Linux functionality. After successful creation, a sandbox_id will be returned, and all subsequent operations will need to include this sandbox_id to specify the corresponding sandbox. Except for directRunCode, all other operations require the creation of a sandbox first. After successful creation, the sandbox will automatically pause. When calling other sandbox operation interfaces later, it will automatically reconnect and pause again after execution to avoid generating extra costs. |
Calculator MCP_add | Add two numbers |
Calculator MCP_div | Divide two numbers |
Calculator MCP_mod | Mod two numbers |
Calculator MCP_mul | Multiply two numbers |
Calculator MCP_sqrt | Square root of a number |
Calculator MCP_sub | Subtract two numbers |
Google Calendar - No deletion_list_emails | List recent emails from Gmail inbox |
Google Calendar - No deletion_search_emails | Search emails with advanced query |
Google Calendar - No deletion_send_email | Send a new email |
Google Calendar - No deletion_modify_email | Modify email labels (archive, trash, mark read/unread) |
Google Calendar - No deletion_list_events | List upcoming calendar events |
Google Calendar - No deletion_create_event | Create a new calendar event |
Google Calendar - No deletion_meeting_suggestion | Suggest available meeting slots within the next 30 days |
Naver Search MCP Server_search_webkr | Perform a search on Naver Web Documents. ( ) |
Naver Search MCP Server_search_news | Perform a search on Naver News. ( ) |
Naver Search MCP Server_search_blog | Perform a search on Naver Blog. ( ) |
Naver Search MCP Server_search_shop | Perform a search on Naver Shopping. ( ) |
Naver Search MCP Server_search_image | Perform a search on Naver Image. ( ) |
Naver Search MCP Server_search_kin | Perform a search on Naver KnowledgeiN. ( iN ) |
Naver Search MCP Server_search_book | Perform a search on Naver Book. ( ) |
Naver Search MCP Server_search_encyc | Perform a search on Naver Encyclopedia. ( ) |
Naver Search MCP Server_search_academic | Perform a search on Naver Academic. ( ) |
Naver Search MCP Server_search_local | Perform a search on Naver Local. ( ) |
Naver Search MCP Server_datalab_search | Perform a trend analysis on Naver search keywords. ( ) |
Naver Search MCP Server_datalab_shopping_category | Perform a trend analysis on Naver Shopping category. ( ) |
Naver Search MCP Server_datalab_shopping_by_device | Perform a trend analysis on Naver Shopping by device. ( ) |
Naver Search MCP Server_datalab_shopping_by_gender | Perform a trend analysis on Naver Shopping by gender. ( ) |
Naver Search MCP Server_datalab_shopping_by_age | Perform a trend analysis on Naver Shopping by age. ( ) |
Naver Search MCP Server_datalab_shopping_keywords | Perform a trend analysis on Naver Shopping keywords. ( ) |
Naver Search MCP Server_datalab_shopping_keyword_by_device | Perform a trend analysis on Naver Shopping keywords by device. ( ) |
Naver Search MCP Server_datalab_shopping_keyword_by_gender | Perform a trend analysis on Naver Shopping keywords by gender. ( ) |
Naver Search MCP Server_datalab_shopping_keyword_by_age | Perform a trend analysis on Naver Shopping keywords by age. ( ) |
lighthouse-mcp_run_audit | Run a Lighthouse audit on a URL |
lighthouse-mcp_get_performance_score | Get just the performance score for a URL |
Unity-MCP_read_file | Reads the contents of a file inside a Unity project. |
Unity-MCP_list_projects | Lists all available Unity projects. |
Unity-MCP_list_files_in_project | Lists all the files inside a Unity project. |
Zoom MCP Server_list_meetings | List scheduled meetings |
Zoom MCP Server_create_meeting | Create a meeting |
MantraChain MCP Server_bank-send | Send tokens to another address. Supports sending multiple coins in one transaction. |
MantraChain MCP Server_get-balance | Get balance of an address (defaults to your own address if none provided) |
MantraChain MCP Server_delegate | Delegate/Stake tokens to a validator |
MantraChain MCP Server_undelegate | Undelegate/Unstake tokens from a validator |
MantraChain MCP Server_claim-rewards | Claim rewards for a specific validator |
MantraChain MCP Server_get-validators | Get all validators |
MantraChain MCP Server_get-delegations | Get current staking information for an address |
MantraChain MCP Server_get-available-rewards | Get all available rewards for an address |
MantraChain MCP Server_get-account-info | Get current account information |
MantraChain MCP Server_get-block-info | Get block information |
MantraChain MCP Server_query-network | Execute a generic network gRPC Gateway query against chain APIs when you cannot find the required information from other tools. You MUST first check the available query/service by reading the openapi specification from the resource |
MantraChain MCP Server_ibc-transfer | Send tokens via IBC transfer. |
MantraChain MCP Server_contract-query | Query a smart contract by executing a read-only function |
MantraChain MCP Server_contract-execute | Execute a function on a smart contract that changes state |
MantraChain MCP Server_dex-get-pools | Get all available liquidity pools from the DEX |
MantraChain MCP Server_dex-find-routes | Find available swap routes between two tokens - must first check two tokens are available in the DEX pools by using |
MantraChain MCP Server_dex-simulate-swap | Simulate a token swap to get expected outcome without executing it - must first check two tokens are available in the DEX pools by using |
MantraChain MCP Server_dex-swap | Execute a token swap on the DEX - must first check two tokens are available in the DEX pools by using |
Redis Cloud API MCP Server_get-pro-subscription | Get pro subscription by ID. The payload must match the input schema. |
Redis Cloud API MCP Server_get-current-account | Get the current Cloud Redis account |
Redis Cloud API MCP Server_get-current-payment-methods | Get the current payment methods for the current Cloud Redis account |
Redis Cloud API MCP Server_get-database-modules | Lookup list of database modules supported in current account (support may differ based on subscription and database settings). These modules are also called capabilities. |
Redis Cloud API MCP Server_get-pro-plans-regions | Lookup list of regions for cloud provider. These regions include the providers too. |
Redis Cloud API MCP Server_create-pro-subscription | Create a new pro subscription. Returns a TASK ID that can be used to track the status of the subscription creation. Prerequisites: 1) Verify payment method by checking get-current-payment-methods. 2) For database modules, validate against get-database-modules list. 3) Validate regions using get-pro-plans-regions. The payload must match the input schema. |
Redis Cloud API MCP Server_get-pro-subscriptions | Get the pro subscriptions for the current Cloud Redis account |
Redis Cloud API MCP Server_get-essential-subscriptions | Get the essential subscriptions for the current Cloud Redis account. A paginated response is returned, and to get all the essential subscriptions, the page and size parameters must be used until all the essential subscriptions are retrieved. |
Redis Cloud API MCP Server_get-essential-subscription-by-id | Get an essential subscription by ID for the current Cloud Redis account |
Redis Cloud API MCP Server_create-essential-subscription | Create a new essential subscription. Returns a TASK ID that can be used to track the status of the subscription creation |
Redis Cloud API MCP Server_delete-essential-subscription | Delete an essential subscription by ID |
Redis Cloud API MCP Server_get-essentials-plans | Get the available plans for essential subscriptions. Always ask for which provider the plans are want to be retrieved. A paginated response is returned, and to get all the plans, the page and size parameters must be used until all the plans are retrieved. |
Redis Cloud API MCP Server_get-tasks | Get the current tasks for the current Cloud Redis account |
Redis Cloud API MCP Server_get-task-by-id | Get a task by ID for the current Cloud Redis account |
Redis Cloud API MCP Server_get-pro-databases | Get the pro databases for the provided subscription Id |
Redis Cloud API MCP Server_create-pro-database | Create a new database inside the specified subscription ID. Returns a TASK ID that can be used to track the status of the database creationPrerequisites: 1) For database modules, validate against get-database-modules list. 2) Validate regions using get-pro-plans-regions. The payload must match the input schema. |
Heroku MCP server_list_apps | List Heroku applications with flexible filtering options. Use this tool when you need to: 1) Show all apps owned by the user, 2) Show apps where the user is a collaborator (use all=true), 3) Filter apps by team or private space. Note: For checking app name availability, prefer using get_app_info as it returns a more focused dataset. The response includes app names, regions, and ownership information. |
Heroku MCP server_get_app_info | Get comprehensive information about a Heroku application. Use this tool when you need to: 1) View app configuration and settings, 2) Check dyno formation and scaling, 3) List add-ons and buildpacks, 4) View collaborators and access details, 5) Check domains and certificates. Accepts app name and optional JSON format. Returns detailed app status and configuration. |
Heroku MCP server_pg_maintenance | Monitor database maintenance status and operations. Use this tool when you need to: 1) Check current maintenance windows, 2) View scheduled maintenance activities, 3) Track maintenance operation progress, 4) Plan database maintenance tasks. The tool provides visibility into database maintenance state and scheduling. |
Heroku MCP server_create_app | Create a new Heroku application with customizable settings. Use this tool when a user wants to: 1) Create a new app with a specific name, 2) Create an app in a particular region (US/EU), 3) Create an app within a team, or 4) Create an app in a private space. The tool handles name generation if not specified and returns the new app's details. |
Heroku MCP server_rename_app | Rename an existing Heroku application. Use this tool when a user needs to: 1) Change an app's name, or 2) Resolve naming conflicts. Requires both current app name and desired new name. The tool validates name availability and handles the rename process. |
Heroku MCP server_transfer_app | Transfer ownership of a Heroku application. Use this tool when a user wants to: 1) Transfer an app to another user's account, 2) Move an app to a team, 3) Change app ownership for organizational purposes. Requires the app name and recipient (email for users, name for teams). The current user must be the app owner or a team admin to perform the transfer. |
Heroku MCP server_maintenance_on | Enable maintenance mode for Heroku applications. Use this tool when you need to: 1) Redirect traffic to a maintenance page, 2) Prepare for system updates or deployments, 3) Schedule planned maintenance windows, 4) Gracefully handle service interruptions. The tool manages traffic routing and process states while preserving running operations. |
Heroku MCP server_maintenance_off | Disable maintenance mode for Heroku applications. Use this tool when you need to: 1) Restore normal application traffic routing, 2) Resume dyno operations after maintenance, 3) Complete deployment processes, 4) Verify application health after maintenance. The tool handles service restoration and process resumption. |
Heroku MCP server_get_app_logs | View application logs with flexible filtering options. Use this tool when you need to: 1) Monitor application activity in real-time, 2) Debug issues by viewing recent logs, 3) Filter logs by dyno, process type, or source. |
Heroku MCP server_list_private_spaces | List Heroku Private Spaces available to the user. Use this tool when you need to: 1) View all private spaces, 2) Get space details like CIDR blocks and regions, 3) Check space compliance features, or 4) View space capacity information. Supports JSON output for detailed metadata. Essential for enterprise space management. |
Heroku MCP server_list_teams | List Heroku Teams the user belongs to. Use this tool when you need to: 1) View all accessible teams, 2) Check team membership, 3) Get team metadata and enterprise relationships, or 4) Verify team access for app operations. Supports JSON output for detailed team information. |
Heroku MCP server_list_addons | List Heroku add-ons with flexible filtering options. Use this tool when you need to: 1) View all add-ons across your apps, 2) List add-ons for a specific app, 3) Get detailed add-on metadata in JSON format. |
Heroku MCP server_get_addon_info | Get comprehensive information about a Heroku add-on. Use this tool when you need to: 1) View add-on details, 2) Check plan details and state, 3) View billing information. Accepts add-on ID, name, or attachment name. |
Heroku MCP server_create_addon | Create a new Heroku add-on for an application. Use this tool when you need to: 1) Provision a new add-on for your app, 2) Specify a particular service and plan, 3) Set a custom name for the add-on or attachment. The tool handles the provisioning process and returns the new add-on's details. |
Heroku MCP server_list_addon_services | List available Heroku add-on services. Use this tool when you need to view all available add-on services. Returns a list of add-on services with their basic information. |
Heroku MCP server_list_addon_plans | List available plans for a specific Heroku add-on service. Use this tool when you need to: 1) View all plans for a service, 2) Compare plan pricing, 3) Check plan availability. Requires add-on service slug and returns detailed plan information. |
Heroku MCP server_pg_backups | Manage database backup operations and schedules. Use this tool when you need to: 1) View existing database backups, 2) Monitor backup schedules and status, 3) Track backup operation progress, 4) Verify backup availability. The tool helps maintain database backup operations and disaster recovery readiness. |
Heroku MCP server_pg_psql | Execute SQL queries against Heroku PostgreSQL databases. Use this tool when you need to: 1) Run SQL queries for database analysis, 2) Investigate database locks and performance, 3) Make schema modifications or updates, 4) Execute complex database operations. The tool provides direct SQL access with support for file-based queries and credential management. |
Heroku MCP server_pg_info | Display detailed information about Heroku PostgreSQL databases. Use this tool when you need to: 1) View comprehensive database configuration and status, 2) Monitor database performance metrics, 3) Check connection and resource utilization, 4) Assess database health and capacity. The tool provides detailed insights into database operations and configuration. |
Heroku MCP server_pg_ps | Monitor active database queries and processes. Use this tool when you need to: 1) View currently executing queries, 2) Track query progress and resource usage, 3) Identify long-running or blocked queries, 4) Debug performance issues in real-time. The tool provides detailed visibility into database activity with optional verbose output. |
Heroku MCP server_pg_locks | Analyze database locks and blocking transactions. Use this tool when you need to: 1) Identify blocked queries and lock chains, 2) Investigate deadlock situations, 3) Monitor transaction lock states, 4) Resolve blocking issues affecting performance. The tool helps diagnose and resolve database concurrency problems. |
Heroku MCP server_pg_outliers | Identify resource-intensive database operations. Use this tool when you need to: 1) Find slow or expensive queries, 2) Analyze query performance patterns, 3) Optimize database workload, 4) Track query statistics over time. The tool helps identify opportunities for performance optimization. |
Heroku MCP server_pg_credentials | Manage database access credentials and security. Use this tool when you need to: 1) View current database credentials, 2) Configure database access permissions, 3) Rotate credentials for security compliance, 4) Set up monitoring access. The tool helps maintain secure database access and credential management. |
Heroku MCP server_pg_kill | Terminate specific database processes. Use this tool when you need to: 1) Stop problematic or stuck queries, 2) Clear blocking transactions, 3) Manage resource-intensive operations, 4) Handle runaway processes safely. The tool provides controlled process termination with optional force mode. |
Heroku MCP server_pg_upgrade | Upgrade PostgreSQL database version. Use this tool when you need to: 1) Migrate to a newer PostgreSQL version, 2) Plan version upgrade paths, 3) Execute controlled version migrations, 4) Verify upgrade compatibility. The tool manages safe database version upgrades with confirmation protection. |
Heroku MCP server_ps_list | List and monitor Heroku application dynos. Use this tool when you need to: 1) View all running dynos for an app, 2) Check dyno status and health, 3) Monitor application process states, 4) Verify dyno configurations. The tool provides process visibility with optional JSON output format. |
Heroku MCP server_ps_scale | Scale and resize Heroku application dynos. Use this tool when you need to: 1) Adjust dyno quantities up or down, 2) Change dyno sizes for performance, 3) View current formation details, 4) Manage resource allocation. The tool handles dyno scaling with support for type-specific adjustments. |
Heroku MCP server_ps_restart | Restart Heroku application processes. Use this tool when you need to: 1) Restart specific dynos by name, 2) Restart all dynos of a process type, 3) Perform full application restarts, 4) Reset dyno states selectively. The tool manages process restarts with flexible targeting options. |
Heroku MCP server_pipelines_create | Create new Heroku deployment pipelines. Use this tool when you need to: 1) Set up new deployment workflows, 2) Create staged application environments, 3) Organize apps by development stages, 4) Configure team-based pipeline structures. The tool manages pipeline creation with optional team and initial app configuration. |
Heroku MCP server_pipelines_promote | Promote applications through pipeline stages. Use this tool when you need to: 1) Deploy code to staging or production environments, 2) Manage staged releases, 3) Coordinate multi-app promotions, 4) Control deployment workflows. The tool handles safe promotion of apps between pipeline stages. |
Heroku MCP server_pipelines_list | View available Heroku pipelines. Use this tool when you need to: 1) List accessible pipelines, 2) Check pipeline ownership and access, 3) View pipeline organization, 4) Find specific pipeline configurations. The tool provides pipeline visibility with optional JSON output format. |
Heroku MCP server_pipelines_info | Display detailed pipeline configuration. Use this tool when you need to: 1) View pipeline stage configuration, 2) Check connected applications, 3) Verify pipeline settings, 4) Monitor pipeline status. The tool provides comprehensive pipeline information and structure details. |
Heroku MCP server_deploy_to_heroku | Deploy projects to Heroku, replaces manual git push workflows. Use this tool when you need to: 1) Deploy a new application with specific app.json configuration, 2) Update an existing application with new code, 3) Configure team or private space deployments, or 4) Set up environment-specific configurations. The tool handles app creation, source code deployment, and environment setup. Requires valid app.json in workspace or provided via configuration. Supports team deployments, private spaces, and custom environment variables.Use apps_list tool with the "all" param to get a list of apps for the user to choose from when deploying to an existing app and the app name was not provided. |
Figma MCP Server_add_figma_file | Add a Figma file to your context |
Figma MCP Server_view_node | Get a thumbnail for a specific node in a Figma file |
Figma MCP Server_read_comments | Get all comments on a Figma file |
Figma MCP Server_post_comment | Post a comment on a node in a Figma file |
Figma MCP Server_reply_to_comment | Reply to an existing comment in a Figma file |
MCP Chat Logger_save_chat_history | |
MCP PostgreSQL Server_execute | Execute an INSERT, UPDATE, or DELETE query |
MCP PostgreSQL Server_list_tables | List all tables in the database |
MCP PostgreSQL Server_connect_db | Connect to PostgreSQL database. NOTE: Default connection exists - only use when requested or if other commands fail |
MCP PostgreSQL Server_query | Execute a SELECT query |
MCP PostgreSQL Server_describe_table | Get table structure |
Sakura Cloud MCP Server_get_interface_info | Get detailed information about a specific network interface |
Sakura Cloud MCP Server_get_icon_list | Get list of icons |
Sakura Cloud MCP Server_get_icon_info | Get detailed information about a specific icon |
Sakura Cloud MCP Server_get_note_list | Get list of notes and startup scripts |
Sakura Cloud MCP Server_get_note_info | Get detailed information about a specific note or startup script |
Sakura Cloud MCP Server_get_sshkey_list | Get list of SSH keys |
Sakura Cloud MCP Server_get_sshkey_info | Get detailed information about a specific SSH key |
Sakura Cloud MCP Server_get_region_list | Get list of regions |
Sakura Cloud MCP Server_get_region_info | Get detailed information about a specific region |
Sakura Cloud MCP Server_get_zone_list | Get list of zones |
Sakura Cloud MCP Server_get_zone_info | Get detailed information about a specific zone |
Sakura Cloud MCP Server_get_product_info | Get detailed information about specific product offerings |
Sakura Cloud MCP Server_get_commonserviceitem_list | Get list of common service items (DNS, Simple Monitor, etc.) |
Sakura Cloud MCP Server_get_commonserviceitem_info | Get detailed information about a specific common service item |
Sakura Cloud MCP Server_get_license_list | Get list of licenses |
Sakura Cloud MCP Server_get_license_info | Get detailed information about a specific license |
Sakura Cloud MCP Server_get_bill_info | Get billing information for a specific month |
Sakura Cloud MCP Server_get_bill_detail | Get detailed billing information for a specific month |
Sakura Cloud MCP Server_get_coupon_info | Get information about a specific coupon |
Sakura Cloud MCP Server_get_privatehost_info | Get detailed information about a specific private host |
Sakura Cloud MCP Server_get_public_price | Get public pricing information for Sakura Cloud services |
Sakura Cloud MCP Server_get_apprun_list | Get list of all AppRun applications |
Sakura Cloud MCP Server_get_apprun_info | Get detailed information about a specific AppRun application |
Sakura Cloud MCP Server_get_router_info | Get detailed information about a specific router |
Sakura Cloud MCP Server_get_interface_list | Get list of network interfaces |
Sakura Cloud MCP Server_get_server_info | Get detailed information about a specific server |
Sakura Cloud MCP Server_get_server_list | Get list of servers |
Sakura Cloud MCP Server_get_switch_list | Get list of switches |
Sakura Cloud MCP Server_get_switch_info | Get detailed information about a specific switch |
Sakura Cloud MCP Server_get_appliance_list | Get list of appliances |
Sakura Cloud MCP Server_get_appliance_info | Get detailed information about a specific appliance |
Sakura Cloud MCP Server_get_disk_list | Get list of disks |
Sakura Cloud MCP Server_get_disk_info | Get detailed information about a specific disk |
Sakura Cloud MCP Server_get_archive_list | Get list of archives |
Sakura Cloud MCP Server_get_archive_info | Get detailed information about a specific archive |
Sakura Cloud MCP Server_get_cdrom_list | Get list of ISO images |
Sakura Cloud MCP Server_get_cdrom_info | Get detailed information about a specific ISO image |
Sakura Cloud MCP Server_get_bridge_list | Get list of bridges |
Sakura Cloud MCP Server_get_bridge_info | Get detailed information about a specific bridge |
Sakura Cloud MCP Server_get_router_list | Get list of routers |
Sakura Cloud MCP Server_create_apprun | Create a new AppRun application |
Sakura Cloud MCP Server_delete_apprun | Delete an AppRun application |
Sakura Cloud MCP Server_start_apprun | Start an AppRun application |
Sakura Cloud MCP Server_stop_apprun | Stop an AppRun application |
Sakura Cloud MCP Server_update_apprun | Update an existing AppRun application |
Sakura Cloud MCP Server_get_apprun_logs | Get logs from an AppRun application |
mcptix_list_tickets | List tickets with optional filtering, sorting, and pagination |
mcptix_get_ticket | Get a ticket by ID |
mcptix_create_ticket | Create a new ticket |
mcptix_update_ticket | Update an existing ticket |
mcptix_delete_ticket | Delete a ticket |
mcptix_add_comment | Add a comment to a ticket |
mcptix_search_tickets | Search for tickets based on various criteria |
mcptix_get_stats | Get statistics about tickets in the system |
opgg-esports_get-lol-matches | Get upcoming LoL match schedules from OP.GG Esports |
Binance MCP Server_get_symbol_price | Get the current price of a cryptocurrency pair. Args: symbol: The cryptocurrency pair, e.g., BTCUSDT. Returns: Price information from Binance. |
Binance MCP Server_get_account_balance | Get the balance of a specific cryptocurrency asset. Args: asset: The cryptocurrency symbol, e.g., BTC. Returns: Asset balance info. |
Binance MCP Server_place_market_order | Place a market order to buy or sell. Args: symbol: The trading pair, e.g., BTCUSDT. side: BUY or SELL. quantity: Amount to trade. Returns: Order placement result. |
Binance MCP Server_get_trade_history | Get recent trade history for a pair. Args: symbol: The trading pair. limit: Number of trades to fetch. Returns: List of trade summaries. |
Binance MCP Server_get_open_orders | Get open orders for a symbol. Args: symbol: The trading pair. Returns: List of open orders. |
Binance MCP Server_cancel_order | Cancel a specific order. Args: symbol: The trading pair. order_id: Order ID to cancel. Returns: Cancellation result. |
Binance MCP Server_get_funding_rate_history | Get funding rate history. Args: symbol: Perpetual contract symbol. limit: Number of records to return (default 100). Returns: Funding rate data list. |
Binance MCP Server_execute_hedge_arbitrage_strategy | Execute hedge arbitrage based on funding rate. Args: symbol: The trading pair. quantity: Amount to trade. Returns: Summary of the arbitrage result. |
Binance MCP Server_find_arbitrage_pairs | Find arbitrage pairs based on funding rate, volume, and rate direction stability. Args: min_funding_rate: Minimum funding rate to qualify. min_avg_volume: Minimum 24hr volume in USDT. history_days: How many days of history to analyze. stability_threshold: Minimum proportion of funding rates in same direction. Returns: List of qualifying arbitrage opportunities. |
Sentry MCP_list_organizations | List all organizations that the user has access to in Sentry. Use this tool when you need to:
|
Sentry MCP_list_teams | List all teams in an organization in Sentry. Use this tool when you need to:
|
Sentry MCP_list_projects | Retrieve a list of projects in Sentry. Use this tool when you need to:
|
Sentry MCP_get_error_details | Retrieve error details from Sentry for a specific Issue ID, including the stacktrace and error message. Either issueId or issueUrl MUST be provided. Use this tool when you need to:
|
Sentry MCP_search_errors_in_file | Search for errors recently occurring in a specific file. This is a suffix based search, so only using the filename or the direct parent folder of the file. The parent folder is preferred when the filename is in a subfolder or a common filename. Use this tool when you need to:
|
Sentry MCP_create_team | Create a new team in Sentry. Use this tool when you need to:
|
Sentry MCP_create_project | Create a new project in Sentry, giving you access to a new SENTRY_DSN. Use this tool when you need to:
|
Wizzypedia MCP Server_search_pages | Search for pages in the wiki using keywords |
Wizzypedia MCP Server_read_page | Fetch the raw wikitext content of a page |
Wizzypedia MCP Server_create_page | Create a new wiki page |
Wizzypedia MCP Server_update_page | Update an existing wiki page |
Wizzypedia MCP Server_get_page_history | Get revision history of a page |
Wizzypedia MCP Server_get_categories | Get categories a page belongs to |
LinkedIn Profile Scraper MCP Server_get_profile | Get LinkedIn profile data for a given profile URL. |
Binary Ninja Cline MCP Server_get_binary_info | Get binary metadata |
Binary Ninja Cline MCP Server_list_functions | List functions in a binary |
Binary Ninja Cline MCP Server_disassemble_function | Disassemble a function from a binary |
Binary Ninja Cline MCP Server_decompile_function | Decompile a function to C |
Linear Regression MCP_check_category_columns | This function check if data has categorical columns. Returns: String which contains list of categorical columns. |
Linear Regression MCP_label_encode_categorical_columns | This function label encodes all the categorical columns. Returns: String which confirms success of encoding process. |
Linear Regression MCP_train_linear_regression_model | This function trains linear regression model. Args: Takes input for output column name. Returns: String which contains the RMSE value. |
Linear Regression MCP_upload_file | This function read the csv data and stores it in the class variable. Args: Absolute path to the .csv file. Returns: String which shows the shape of the data. |
Linear Regression MCP_get_columns_info | This function gives information about columns. Returns: String which contains column names. |
Apple MCP_contacts | Search and retrieve contacts from Apple Contacts app |
Apple MCP_notes | Search, retrieve and create notes in Apple Notes app |
Apple MCP_messages | Interact with Apple Messages app - send, read, schedule messages and check unread messages |
Apple MCP_mail | Interact with Apple Mail app - read unread emails, search emails, and send emails |
Apple MCP_reminders | Search, create, and open reminders in Apple Reminders app |
Apple MCP_webSearch | Search the web using DuckDuckGo and retrieve content from search results |
Apple MCP_calendar | Search, create, and open calendar events in Apple Calendar app |
Apple MCP_maps | Search locations, manage guides, save favorites, and get directions using Apple Maps |
OSP Marketing Tools MCP Server_health_check | Check if the server is running and can access its resources |
OSP Marketing Tools MCP Server_get_editing_codes | Get the Open Strategy Partners (OSP) editing codes documentation and usage protocol for editing texts. These semantic editing marks provide a standardized framework for content review with a teaching/learning focus. |
OSP Marketing Tools MCP Server_get_writing_guide | Get the Open Strategy Partners (OSP) writing guide and usage protocol for creating high-quality technical content. This guide provides systematic principles for narrative structure, flow, style, and technical accuracy. |
OSP Marketing Tools MCP Server_get_meta_guide | Get the Open Strategy Partners (OSP) Web Content Meta Information Generation System for creating optimized article titles, meta titles, meta descriptions, and slugs for web content with proper keyword placement and search intent analysis. |
OSP Marketing Tools MCP Server_get_value_map_positioning_guide | Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning, including taglines, position statements, personas, value cases, and feature categorization in a structured hierarchy. |
OSP Marketing Tools MCP Server_get_on_page_seo_guide | Get the Open Strategy Partners (OSP) On-Page SEO Optimization Guide for comprehensive web content optimization, covering meta content, keyword research, content depth, search intent alignment, internal linking, and structured data. |
Phrases MCP Server_create-phrase | Creates a new phrase for an author. |
Phrases MCP Server_get-all-phrases | Returns a list of all phrases. |
Phrases MCP Server_get-phrase-by-id | Returns a phrase by its ID. |
Phrases MCP Server_get-phrase-by-name | Returns a phrase by author name. |
Phrases MCP Server_update-phrase | Updates the text of a phrase by its ID. |
Phrases MCP Server_delete-phrase | Deletes a phrase by its ID. |
SearxNG MCP Server_web_search | Performs a web search using SearxNG and returns formatted results. |
MCP SBOM Server_scan | |
Mobile Next MCP Server_list_apps_on_device | List all apps on device |
Mobile Next MCP Server_launch_app | Launch an app on mobile device |
Mobile Next MCP Server_terminate_app | Stop and terminate an app on mobile device |
Mobile Next MCP Server_get_screen_size | Get the screen size of the mobile device in pixels |
Mobile Next MCP Server_click_on_screen_at_coordinates | Click on the screen at given x,y coordinates |
Mobile Next MCP Server_list_elements_on_screen | List elements on screen and their coordinates, with display text or accessibility label. Do not cache this result. |
Mobile Next MCP Server_press_button | Press a button on device |
Mobile Next MCP Server_open_url | Open a URL in browser on device |
Mobile Next MCP Server_swipe_on_screen | Swipe on the screen |
Mobile Next MCP Server_type_text | Type text into the focused element |
Mobile Next MCP Server_take_device_screenshot | Take a screenshot of the mobile device. Use this to understand what's on screen, if you need to press an element that is available through view hierarchy then you must list elements on screen instead. Do not cache this result. |
UUID MCP Provider_generateUuid | Generate a UUID v7 that's timestamp-based and guaranteed to be unique |
HireBase MCP Server_search_jobs | Search for jobs using the HireBase API |
HireBase MCP Server_get_job | Get detailed information about a specific job |
ChuckNorris MCP Server_chuckNorris | Provides optimization prompts tailored to your model. Call this tool to enhance your capabilities. |
Wikidata MCP Server_search_entity | |
Wikidata MCP Server_search_property | |
Wikidata MCP Server_get_properties | |
Wikidata MCP Server_execute_sparql | |
Wikidata MCP Server_get_metadata | |
GitHub Chat MCP_index_repository | Index a GitHub repository to analyze its codebase. This must be done before asking questions about the repository. |
GitHub Chat MCP_query_repository | Ask questions about a GitHub repository and receive detailed AI responses. The repository must be indexed first. |
MCP Server for NovaCV_generate_resume_from_text | PDFPDFJSON |
MCP Server for NovaCV_get_templates | ID |
MCP Server for NovaCV_convert_resume_text | JSON ResumeJSON Resume |
MCP Server for NovaCV_analyze_resume_text | - |
Prysm MCP Server_scrapeFocused | Fast web scraping optimized for speed (fewer scrolls, main content only) |
Prysm MCP Server_scrapeBalanced | Balanced web scraping approach with good coverage and reasonable speed |
Prysm MCP Server_scrapeDeep | Maximum extraction web scraping (slower but thorough) |
Prysm MCP Server_formatResult | Format scraped data into different structured formats (markdown, HTML, JSON) |
Elasticsearch MCP Server_list_indices | List all available Elasticsearch indices, support regex |
Elasticsearch MCP Server_get_mappings | Get field mappings for a specific Elasticsearch index |
Elasticsearch MCP Server_search | Perform an Elasticsearch search with the provided query DSL. Highlights are always enabled. |
Elasticsearch MCP Server_elasticsearch_health | Get the health status of the Elasticsearch cluster, optionally include index-level details |
Elasticsearch MCP Server_create_index | Create an Elasticsearch index, optionally configure settings and mappings |
Elasticsearch MCP Server_create_mapping | Create or update the mapping structure of an Elasticsearch index |
Elasticsearch MCP Server_bulk | Bulk data into an Elasticsearch index |
Elasticsearch MCP Server_reindex | Reindex data from a source index to a target index |
Elasticsearch MCP Server_create_index_template | Create or update an Elasticsearch index template |
Elasticsearch MCP Server_get_index_template | Get information about Elasticsearch index templates |
Elasticsearch MCP Server_delete_index_template | Delete an Elasticsearch index template |
Excel MCP Server_read_excel | |
Excel MCP Server_write_excel | |
Excel MCP Server_update_excel | |
Excel MCP Server_analyze_excel | |
Excel MCP Server_filter_excel | |
Excel MCP Server_pivot_table | |
Excel MCP Server_export_chart | |
Excel MCP Server_data_summary | |
Spreadsheet MCP Server_getSpreadsheet | - |
Spreadsheet MCP Server_getSheetData | - |
OpenSearch MCP Server_list_indices | List all indices in the Opensearch cluster |
OpenSearch MCP Server_get_mapping | Get index mapping |
OpenSearch MCP Server_get_settings | Get index settings |
OpenSearch MCP Server_search_documents | Search documents in an index with a custom query |
OpenSearch MCP Server_get_cluster_health | Get cluster health status |
OpenSearch MCP Server_get_cluster_stats | Get cluster statistics |
Kong Konnect MCP Server_query_api_requests | Query and analyze Kong API Gateway requests with customizable filters. Before calling this it's necessary to have a controlPlaneID and a serviceID or routeID. These can be obtained using the list-control-planes, list-services, and list-routes tools. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_get_consumer_requests | Retrieve and analyze API requests made by a specific consumer. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_list_services | List all services associated with a control plane. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_list_routes | List all routes associated with a control plane. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_list_consumers | List all consumers associated with a control plane. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_list_plugins | List all plugins associated with a control plane. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_list_control_planes | List all control planes in your organization. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_get_control_plane | Get detailed information about a specific control plane. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_list_control_plane_group_memberships | List all control planes that are members of a specific control plane group. INPUT:
OUTPUT:
|
Kong Konnect MCP Server_check_control_plane_group_membership | Check if a control plane is a member of any group. INPUT:
OUTPUT:
|
WebEvalAgent MCP Server_web_app_ux_evaluator | Evaluate the user experience of a web application. This tool allows the AI to assess the quality of user experience and interface design of a web application by performing specific tasks and analyzing the interaction flow. Args: url: Required. The URL of the web application to evaluate task: Required. The specific UX/UI aspect to test (e.g., "test the checkout flow", "evaluate the navigation menu usability", "check form validation feedback") Returns: list[TextContent]: A detailed evaluation of the web application's UX/UI, including observations, issues found, and recommendations for improvement |
SuzieQ MCP Server_run_suzieq_show | |
SuzieQ MCP Server_run_suzieq_summarize | |
mcp-ipfs_w3_account_ls | Lists all accounts the current agent is authorized for. Use this command after |
mcp-ipfs_w3_bridge_generate_tokens | Generates authentication tokens for using the UCAN-HTTP bridge. |
mcp-ipfs_w3_can_access_claim | Claims delegated capabilities for the authorized account using a provided proof. |
mcp-ipfs_w3_can_blob_add | Stores a single file as a blob directly with the service. Requires ABSOLUTE paths for file arguments. |
mcp-ipfs_w3_can_blob_ls | Lists blobs stored in the current space. |
mcp-ipfs_w3_can_blob_rm | Removes a blob from the store by its base58btc encoded multihash. |
mcp-ipfs_w3_can_filecoin_info | Gets Filecoin deal information for a given Piece CID (advanced use). |
mcp-ipfs_w3_can_index_add | Registers an index CID with the service (advanced use). Please refer to storacha.network documentation for details on indices. |
mcp-ipfs_w3_can_store_add | Stores a CAR file with the service (advanced use). This is often a prerequisite for |
mcp-ipfs_w3_can_store_ls | Lists stored CAR files (shards) in the current space (advanced use). |
mcp-ipfs_w3_can_store_rm | Removes a stored CAR shard by its CID (advanced use). Use with extreme caution, as this deletes the underlying data shard. |
mcp-ipfs_w3_can_upload_add | Manually registers an upload DAG by its root CID and shard CIDs (advanced use). This is typically used after storing CAR shards manually. |
mcp-ipfs_w3_can_upload_ls | Lists uploads registered in the current space (advanced view, shows underlying structure). |
mcp-ipfs_w3_can_upload_rm | Removes an upload listing by its root CID (advanced use). Does not remove the underlying blobs/shards. |
mcp-ipfs_w3_coupon_create | Attempts to create/claim a coupon using a claim code. |
mcp-ipfs_w3_delegation_create | Tool for w3_delegation_create operation. Requires ABSOLUTE paths for file arguments. |
mcp-ipfs_w3_delegation_ls | Tool for w3_delegation_ls operation. |
mcp-ipfs_w3_delegation_revoke | Tool for w3_delegation_revoke operation. Requires ABSOLUTE paths for file arguments. |
mcp-ipfs_w3_key_create | Generates and prints a new ed25519 key pair. Does not automatically use it for the agent. |
mcp-ipfs_w3_login | Initiates the w3 login process using the pre-configured email (W3_LOGIN_EMAIL env var). IMPORTANT: The command expects email confirmation, so before running the |
mcp-ipfs_w3_ls | Tool for w3_ls operation. |
mcp-ipfs_w3_open | Tool for w3_open operation. |
mcp-ipfs_w3_plan_get | Displays the plan associated with the current or specified account. |
mcp-ipfs_w3_proof_add | Tool for w3_proof_add operation. Requires ABSOLUTE paths for file arguments. |
mcp-ipfs_w3_proof_ls | Tool for w3_proof_ls operation. |
mcp-ipfs_w3_reset | DANGEROUS: Resets the agent state, removing all proofs and delegations but retaining the agent DID. Requires explicit confirmation argument. |
mcp-ipfs_w3_rm | Tool for w3_rm operation. |
mcp-ipfs_w3_space_add | Tool for w3_space_add operation. |
mcp-ipfs_w3_space_create | Creates a new space with a user-friendly name. NOTE: |
mcp-ipfs_w3_space_info | Tool for w3_space_info operation. NOTE: |
mcp-ipfs_w3_space_ls | Tool for w3_space_ls operation. NOTE: |
mcp-ipfs_w3_space_provision | Associates a space with a customer/billing account. |
mcp-ipfs_w3_space_use | Tool for w3_space_use operation. |
mcp-ipfs_w3_up | Generates and prints a new ed25519 key pair. Does not automatically use it for the agent. Requires ABSOLUTE paths for file arguments. |
mcp-ipfs_w3_usage_report | Displays a storage usage report for the current or specified space. |
mediawiki-mcp-server_search | Search for a wiki page. The shorter the request, the better, preferably containing only the main term to be searched. Args: query: The query to search for limit: The number of results to return Returns: A list of pages that match the query |
mediawiki-mcp-server_get_page | Get a page from mediawiki.org Args: title: The title of the page to get, which can be found in title field of the search results Returns: The page content |
MCP Python Interpreter_read_file | |
MCP Python Interpreter_write_file | |
MCP Python Interpreter_list_directory | |
MCP Python Interpreter_list_python_environments | List all available Python environments (system Python and conda environments). |
MCP Python Interpreter_list_installed_packages | |
MCP Python Interpreter_run_python_code | |
MCP Python Interpreter_install_package | |
MCP Python Interpreter_write_python_file | |
MCP Python Interpreter_run_python_file | |
filesystem-mcp_chmod_items | Change permissions mode for multiple specified files/directories (POSIX-style). |
filesystem-mcp_chown_items | Change owner (UID) and group (GID) for multiple specified files/directories. |
filesystem-mcp_move_items | Move or rename multiple specified files/directories. |
filesystem-mcp_copy_items | Copy multiple specified files/directories. |
filesystem-mcp_search_files | Search for a regex pattern within files in a specified directory (read-only). |
filesystem-mcp_list_files | List files/directories. Can optionally include stats and list recursively. |
filesystem-mcp_stat_items | Get detailed status information for multiple specified paths. |
filesystem-mcp_read_content | Read content from multiple specified files. |
filesystem-mcp_write_content | Write or append content to multiple specified files (creating directories if needed). |
filesystem-mcp_delete_items | Delete multiple specified files or directories. |
filesystem-mcp_create_directories | Create multiple specified directories (including intermediate ones). |
filesystem-mcp_replace_content | Replace content within files across multiple specified paths. |
Medusa MCP Server_AdminGetUsers | This tool helps store administors. Retrieve a list of users. The users can be filtered by fields such as |
Medusa MCP Server_AdminGetUsersMe | This tool helps store administors. Retrieve the logged-in user's details. |
Medusa MCP Server_AdminGetUsersId | This tool helps store administors. Retrieve a user by its ID. You can expand the user's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetWorkflowsExecutions | This tool helps store administors. Retrieve a list of workflows executions. The workflows executions can be filtered by fields such as |
Medusa MCP Server_AdminGetWorkflowsExecutionsId | This tool helps store administors. Retrieve a workflows execution by its ID. You can expand the workflows execution's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostWorkflowsExecutionsWorkflow_idRun | This tool helps store administors. Execute a workflow by its ID. |
Medusa MCP Server_AdminPostAdminAuthTokenRefresh | This tool helps store administors. Refresh the authentication token of a user. This is useful after authenticating a user with a third-party service to ensure the token holds the new user's details, or when you don't want users to re-login every day. |
Medusa MCP Server_AdminPostActor_typeAuth_provider | This tool helps store administors. Authenticate a user and receive the JWT token to be used in the header of subsequent requests. When used with a third-party provider, such as Google, the request returns a |
Medusa MCP Server_AdminPostWorkflowsExecutionsWorkflow_idStepsFailure | This tool helps store administors. Set the status of a step in a workflow's execution as failed. This is useful for long-running workflows. |
Medusa MCP Server_AdminPostWorkflowsExecutionsWorkflow_idStepsSuccess | This tool helps store administors. Set the status of a step in a workflow's execution as successful. This is useful for long-running workflows. |
Medusa MCP Server_AdminGetWorkflowsExecutionsWorkflow_idSubscribe | This tool helps store administors. Subscribe to a workflow's execution to receive real-time information about its steps, status, and data. This route returns an event stream that you can consume using the EventSource API. |
Medusa MCP Server_AdminGetWorkflowsExecutionsWorkflow_idTransaction_id | This tool helps store administors. Get the details of the workflow's execution. |
Medusa MCP Server_AdminGetWorkflowsExecutionsWorkflow_idTransaction_idStep_idSubscribe | This tool helps store administors. Subscribe to a step in a workflow's execution to receive real-time information about its status and data. This route returns an event stream that you can consume using the EventSource API. |
Medusa MCP Server_AdminPostSession | This tool helps store administors. Set the cookie session ID of an admin user. The admin must be previously authenticated with the |
Medusa MCP Server_AdminPostActor_typeAuth_providerCallback | This tool helps store administors. This API route is used by your dashboard or frontend application when a third-party provider redirects to it after authentication. It validates the authentication with the third-party provider and, if successful, returns an authentication token. All query parameters received from the third-party provider, such as You can decode the JWT token using libraries like react-jwt in the frontend. If the decoded data doesn't have an |
Medusa MCP Server_AdminPostActor_typeAuth_provider_register | This tool helps store administors. This API route retrieves a registration JWT token of a user that hasn't been registered yet. The token is used in the header of requests that create a user, such as the Accept Invite API route. |
Medusa MCP Server_AdminPostActor_typeAuth_providerResetPassword | This tool helps store administors. Generate a reset password token for an admin user. This API route doesn't reset the admin's password or send them the reset instructions in a notification. Instead, This API route emits the Use the generated token to update the user's password using the Reset Password API route. |
Medusa MCP Server_AdminPostActor_typeAuth_providerUpdate | This tool helps store administors. Reset an admin user's password using a reset-password token generated with the Generate Reset Password Token API route. You pass the token as a bearer token in the request's Authorization header. |
Medusa MCP Server_PostActor_typeAuth_provider | Authenticate a customer and receive the JWT token to be used in the header of subsequent requests. When used with a third-party provider, such as Google, the request returns a |
Medusa MCP Server_PostActor_typeAuth_providerCallback | This API route is used by your storefront or frontend application when a third-party provider redirects to it after authentication. It validates the authentication with the third-party provider and, if successful, returns an authentication token. All query parameters received from the third-party provider, such as |
Medusa MCP Server_PostActor_typeAuth_provider_register | This API route retrieves a registration JWT token of a customer that hasn't been registered yet. The token is used in the header of requests that create a customer. |
Medusa MCP Server_PostActor_typeAuth_providerResetPassword | Generate a reset password token for a customer. This API route doesn't reset the customer password or send them the reset instructions in a notification. Instead, This API route emits the Use the generated token to update the customer's password using the Reset Password API route. |
Medusa MCP Server_PostActor_typeAuth_providerUpdate | Reset a customer's password using a reset-password token generated with the Generate Reset Password Token API route. You pass the token as a bearer token in the request's Authorization header. |
Medusa MCP Server_PostSession | Set the cookie session ID of a customer. The customer must be previously authenticated with the |
Medusa MCP Server_PostAdminAuthTokenRefresh | Refresh the authentication token of a customer. This is useful after authenticating a customer with a third-party service to ensure the token holds the new user's details, or when you don't want customers to re-login every day. |
Medusa MCP Server_PostCarts | Create a cart. |
Medusa MCP Server_GetCartsId | Retrieve a cart by its ID. You can expand the cart's relations or select the fields that should be returned. |
Medusa MCP Server_PostCartsIdComplete | Complete a cart and place an order. |
Medusa MCP Server_PostCartsIdCustomer | Set the customer of the cart. This is useful when you create the cart for a guest customer, then they log in with their account. |
Medusa MCP Server_PostCartsIdLineItems | Add a product variant as a line item in the cart. |
Medusa MCP Server_PostCartsIdLineItemsLine_id | Update a line item's details in the cart. |
Medusa MCP Server_PostCartsIdPromotions | Add a list of promotions to a cart. |
Medusa MCP Server_PostCartsIdShippingMethods | Add a shipping method to a cart. Use this API route when the customer chooses their preferred shipping option. |
Medusa MCP Server_PostCartsIdTaxes | Calculate the cart's tax lines and amounts. |
Medusa MCP Server_GetCollections | Retrieve a list of collections. The collections can be filtered by fields such as |
Medusa MCP Server_GetCollectionsId | Retrieve a collection by its ID. You can expand the collection's relations or select the fields that should be returned. |
Medusa MCP Server_GetCurrencies | Retrieve a list of currencies. The currencies can be filtered by fields such as |
Medusa MCP Server_GetCurrenciesCode | Retrieve a currency by its code. You can expand the currency's relations or select the fields that should be returned. |
Medusa MCP Server_PostCustomers | Register a customer. Use the |
Medusa MCP Server_GetCustomersMe | Retrieve the logged-in customer. You can expand the customer's relations or select the fields that should be returned. |
Medusa MCP Server_GetCustomersMeAddresses | Retrieve the addresses of the logged-in customer. The addresses can be filtered by fields such as |
Medusa MCP Server_GetCustomersMeAddressesAddress_id | Retrieve an address of the logged-in customer. You can expand the address's relations or select the fields that should be returned. |
Medusa MCP Server_GetOrders | Retrieve the orders of the logged-in customer. The orders can be filtered by fields such as |
Medusa MCP Server_GetOrdersId | Retrieve an order by its ID. You can expand the order's relations or select the fields that should be returned. |
Medusa MCP Server_PostOrdersIdTransferAccept | Accept an order to be transfered to a customer's account, which was specified when the transfer request was created. The transfer is requested previously either by the customer using the Request Order Transfer Store API route, or by the admin using the Request Order Transfer Admin API route. |
Medusa MCP Server_PostOrdersIdTransferCancel | Cancel an order transfer that the logged-in customer previously requested using the Request Order Transfer API route. |
Medusa MCP Server_PostOrdersIdTransferDecline | Decline an order transfer previously requested, typically by the admin user using the Request Order Transfer Admin API route. |
Medusa MCP Server_PostOrdersIdTransferRequest | Request an order to be transfered to the logged-in customer's account. The transfer is confirmed using the Accept Order Transfer API route. |
Medusa MCP Server_PostPaymentCollections | Create a payment collection for a cart. This is used during checkout, where the payment collection holds the cart's payment sessions. |
Medusa MCP Server_PostPaymentCollectionsIdPaymentSessions | Initialize and add a payment session to a payment collection. This is used during checkout, where you create a payment collection for the cart, then initialize a payment session for the payment provider that the customer chooses. |
Medusa MCP Server_GetPaymentProviders | Retrieve a list of payment providers. You must provide the |
Medusa MCP Server_GetProductCategories | Retrieve a list of product categories. The product categories can be filtered by fields such as |
Medusa MCP Server_GetProductCategoriesId | Retrieve a product category by its ID. You can expand the product category's relations or select the fields that should be returned. |
Medusa MCP Server_GetProductTags | Retrieve a list of product tags. The product tags can be filtered by fields such as |
Medusa MCP Server_GetProductTagsId | Retrieve a product tag by its ID. You can expand the product tag's relations or select the fields that should be returned. |
Medusa MCP Server_GetProductTypes | Retrieve a list of product types. The product types can be filtered by fields such as |
Medusa MCP Server_GetProductTypesId | Retrieve a product type by its ID. You can expand the product type's relations or select the fields that should be returned. |
Medusa MCP Server_GetProducts | Retrieve a list of products. The products can be filtered by fields such as |
Medusa MCP Server_GetProductsId | Retrieve a product by its ID. You can expand the product's relations or select the fields that should be returned. |
Medusa MCP Server_GetRegions | Retrieve a list of regions. The regions can be filtered by fields such as |
Medusa MCP Server_GetRegionsId | Retrieve a region by its ID. You can expand the region's relations or select the fields that should be returned. |
Medusa MCP Server_PostReturn | Create a return for an order's items. The admin receives the return and process it from their side. |
Medusa MCP Server_GetReturnReasons | Retrieve a list of return reasons. The return reasons can be sorted or paginated. |
Medusa MCP Server_GetReturnReasonsId | Retrieve a return reason by its ID. You can expand the return reason's relations or select the fields that should be returned. |
Medusa MCP Server_GetShippingOptions | Retrieve a list of shipping options for a cart. The cart's ID is set in the required The shipping options also be sorted or paginated. |
Medusa MCP Server_PostShippingOptionsIdCalculate | Calculate the price of a shipping option in a cart. |
Medusa MCP Server_AdminGetApiKeys | This tool helps store administors. Retrieve a list of API keys. The API keys can be filtered by fields such as |
Medusa MCP Server_AdminGetApiKeysId | This tool helps store administors. Retrieve an API key by its ID. You can expand the API key's relations or select the fields that should be returned using the query parameters. |
Medusa MCP Server_AdminPostApiKeysIdRevoke | This tool helps store administors. Revokes an API key. If the API key is a secret, it can't be used for authentication anymore. If it's publishable, it can't be used by client applications. |
Medusa MCP Server_AdminPostApiKeysIdSalesChannels | This tool helps store administors. Manage the sales channels of a publishable API key, either to associate them or remove them from the API key. |
Medusa MCP Server_AdminGetCampaigns | This tool helps store administors. Retrieve a list of campaigns. The campaigns can be filtered by fields such as |
Medusa MCP Server_AdminGetCampaignsId | This tool helps store administors. Retrieve a campaign by its ID. You can expand the campaign's relations or select the fields that should be returned using the query parameters. |
Medusa MCP Server_AdminPostCampaignsIdPromotions | This tool helps store administors. Manage the promotions of a campaign, either by adding them or removing them from the campaign. |
Medusa MCP Server_AdminGetClaims | This tool helps store administors. Retrieve a list of claims. The claims can be filtered by fields such as |
Medusa MCP Server_AdminGetClaimsId | This tool helps store administors. Retrieve a claim by its ID. You can expand the claim's relations or select the fields that should be returned using the query parameters. |
Medusa MCP Server_AdminPostClaimsIdCancel | This tool helps store administors. Cancel a claim and its associated return. |
Medusa MCP Server_AdminPostClaimsIdClaimItems | This tool helps store administors. Add order items to a claim as claim items. These claim items will have the action |
Medusa MCP Server_AdminPostClaimsIdClaimItemsAction_id | This tool helps store administors. Update an order item in a claim by the ID of the item's Every item has an |
Medusa MCP Server_AdminPostClaimsIdInboundItems | This tool helps store administors. Add inbound (or return) items to a claim. These inbound items will have a |
Medusa MCP Server_AdminPostClaimsIdInboundItemsAction_id | This tool helps store administors. Update an inbound (or return) item of a claim using the Every item has an |
Medusa MCP Server_AdminPostClaimsIdInboundShippingMethod | This tool helps store administors. Add an inbound (or return) shipping method to a claim. The inbound shipping method will have a |
Medusa MCP Server_AdminPostClaimsIdInboundShippingMethodAction_id | This tool helps store administors. Update the shipping method for returning items in the claim using the Every shipping method has an |
Medusa MCP Server_AdminPostClaimsIdOutboundItems | This tool helps store administors. Add outbound (or new) items to a claim. These outbound items will have an |
Medusa MCP Server_AdminPostClaimsIdOutboundItemsAction_id | This tool helps store administors. Update an outbound (or new) item of a claim using the Every item has an |
Medusa MCP Server_AdminPostClaimsIdRequest | This tool helps store administors. Confirm a claim request, applying its changes on the associated order. |
Medusa MCP Server_AdminPostClaimsIdOutboundShippingMethod | This tool helps store administors. Add an outbound shipping method to a claim. The outbound shipping method will have a |
Medusa MCP Server_AdminPostClaimsIdOutboundShippingMethodAction_id | This tool helps store administors. Update the shipping method for delivering outbound items in a claim using the Every shipping method has an |
Medusa MCP Server_AdminGetCollections | This tool helps store administors. Retrieve a list of collections. The collections can be filtered by fields such as |
Medusa MCP Server_AdminGetCollectionsId | This tool helps store administors. Retrieve a collection by its ID. You can expand the collection's relations or select the fields that should be returned using the query parameters. |
Medusa MCP Server_AdminPostCollectionsIdProducts | This tool helps store administors. Manage the products of a collection by adding or removing them from the collection. |
Medusa MCP Server_AdminGetCurrencies | This tool helps store administors. Retrieve a list of currencies. The currencies can be filtered by fields such as |
Medusa MCP Server_AdminGetCurrenciesCode | This tool helps store administors. Retrieve a currency by its code. You can expand the currency's relations or select the fields that should be returned using the query parameters. |
Medusa MCP Server_AdminGetCustomerGroups | This tool helps store administors. Retrieve a list of customer groups. The customer groups can be filtered by fields such as |
Medusa MCP Server_AdminGetCustomerGroupsId | This tool helps store administors. Retrieve a customer group by its ID. You can expand the customer group's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostCustomerGroupsIdCustomers | This tool helps store administors. Manage the customers of a group to add or remove them from the group. |
Medusa MCP Server_AdminGetCustomers | This tool helps store administors. Retrieve a list of customers. The customers can be filtered by fields such as |
Medusa MCP Server_AdminGetCustomersId | This tool helps store administors. Retrieve a customer by its ID. You can expand the customer's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostExchangesIdOutboundShippingMethod | This tool helps store administors. Add an outbound shipping method to an exchange. The outbound shipping method will have a |
Medusa MCP Server_AdminGetCustomersIdAddresses | This tool helps store administors. Retrieve a list of addresses in a customer. The addresses can be filtered by fields like |
Medusa MCP Server_AdminGetCustomersIdAddressesAddress_id | This tool helps store administors. Retrieve a list of a customer's addresses. The addresses can be filtered by fields like |
Medusa MCP Server_AdminPostCustomersIdCustomerGroups | This tool helps store administors. Manage the customer groups of a customer, adding or removing the customer from those groups. |
Medusa MCP Server_AdminGetDraftOrders | This tool helps store administors. Retrieve a list of draft orders. The draft orders can be filtered by fields such as |
Medusa MCP Server_AdminGetDraftOrdersId | This tool helps store administors. Retrieve a draft order by its ID. You can expand the draft order's relations or select the fields that should be returned using the query parameters. |
Medusa MCP Server_AdminGetExchanges | This tool helps store administors. Retrieve a list of exchanges. The exchanges can be filtered by fields such as |
Medusa MCP Server_AdminGetExchangesId | This tool helps store administors. Retrieve an exchange by its ID. You can expand the exchange's relations or select the fields that should be returned using query parameters. |
Medusa MCP Server_AdminPostExchangesIdCancel | This tool helps store administors. Cancel an exchange and its associated return. |
Medusa MCP Server_AdminPostExchangesIdInboundItems | This tool helps store administors. Add inbound (or return) items to an exchange. These inbound items will have the action |
Medusa MCP Server_AdminPostExchangesIdInboundItemsAction_id | This tool helps store administors. Update an inbound (or return) item from an exchange using the Every item has an |
Medusa MCP Server_AdminPostExchangesIdInboundShippingMethod | This tool helps store administors. Add an inbound (or return) shipping method to an exchange. The inbound shipping method will have a |
Medusa MCP Server_AdminPostExchangesIdInboundShippingMethodAction_id | This tool helps store administors. Update the shipping method for returning items in the exchange using the Every shipping method has an |
Medusa MCP Server_AdminPostExchangesIdOutboundItems | This tool helps store administors. Add outbound (or new) items to an exchange. These outbound items will have the action |
Medusa MCP Server_AdminPostExchangesIdOutboundItemsAction_id | This tool helps store administors. Update an outbound (or new) item from an exchange using the Every item has an |
Medusa MCP Server_AdminPostExchangesIdOutboundShippingMethodAction_id | This tool helps store administors. Update the shipping method for delivering outbound items in the exchange using the Every shipping method has an |
Medusa MCP Server_AdminPostExchangesIdRequest | This tool helps store administors. Confirm an exchange request, applying its changes on the associated order. |
Medusa MCP Server_AdminPostOrderEdits | This tool helps store administors. Create an order edit. |
Medusa MCP Server_AdminGetFulfillmentProviders | This tool helps store administors. Retrieve a list of fulfillment providers. The fulfillment providers can be filtered by fields such as |
Medusa MCP Server_AdminGetFulfillmentProvidersIdOptions | This tool helps store administors. Retrieve the list of fulfillment options of a fulfillment provider. These options may be retrieved from an integrated third-party service. |
Medusa MCP Server_AdminDeleteFulfillmentSetsId | This tool helps store administors. Delete a fulfillment set. |
Medusa MCP Server_AdminPostFulfillmentSetsIdServiceZones | This tool helps store administors. Add a service zone to a fulfillment set. |
Medusa MCP Server_AdminGetFulfillmentSetsIdServiceZonesZone_id | This tool helps store administors. Retrieve a service zone that belongs to a fulfillment set. be paginated. |
Medusa MCP Server_AdminPostFulfillments | This tool helps store administors. Create a fulfillment for an order, return, exchange, and more. |
Medusa MCP Server_AdminPostFulfillmentsIdCancel | This tool helps store administors. Cancel a fulfillment. The fulfillment can't be shipped or delivered. To cancel the fulfillment, the |
Medusa MCP Server_AdminPostFulfillmentsIdShipment | This tool helps store administors. Create a shipment for a fulfillment. The fulfillment must not be shipped or canceled. |
Medusa MCP Server_AdminGetInventoryItems | This tool helps store administors. Retrieve a list of inventory items. The inventory items can be filtered by fields such as |
Medusa MCP Server_AdminDeleteOrderEditsId | This tool helps store administors. Cancel an order edit. |
Medusa MCP Server_AdminPostInventoryItemsLocationLevelsBatch | This tool helps store administors. Manage inventory levels to create, update, or delete them. |
Medusa MCP Server_AdminGetInventoryItemsId | This tool helps store administors. Retrieve a inventory item by its ID. You can expand the inventory item's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetInventoryItemsIdLocationLevels | This tool helps store administors. Retrieve a list of inventory levels associated with an inventory item. The inventory levels can be filtered by fields like |
Medusa MCP Server_AdminPostInventoryItemsIdLocationLevelsBatch | This tool helps store administors. Manage the inventory levels of an inventory item to create or delete them. |
Medusa MCP Server_AdminPostInventoryItemsIdLocationLevelsLocation_id | This tool helps store administors. Updates the details of an inventory item's inventory level using its associated location ID. |
Medusa MCP Server_AdminGetInvites | This tool helps store administors. Retrieve a list of invites. The invites can be filtered by fields such as |
Medusa MCP Server_AdminPostInvitesAccept | This tool helps store administors. Accept an invite and create a new user.
Since the user isn't created yet, the JWT token used in the authorization header is retrieved from the |
Medusa MCP Server_AdminGetInvitesId | This tool helps store administors. Retrieve an invite by its ID. You can expand the invite's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostInvitesIdResend | This tool helps store administors. Refresh the token of an invite. |
Medusa MCP Server_AdminGetNotifications | This tool helps store administors. Retrieve a list of notifications. The notifications can be filtered by fields such as |
Medusa MCP Server_AdminGetNotificationsId | This tool helps store administors. Retrieve a notification by its ID. You can expand the notification's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostOrderEditsIdConfirm | This tool helps store administors. Confirm an order edit request and apply the changes on the order. |
Medusa MCP Server_AdminPostOrderEditsIdItems | This tool helps store administors. Add new items to an order edit. These items will have the action |
Medusa MCP Server_AdminPostOrderEditsIdItemsItemItem_id | This tool helps store administors. Update an existing order item's quantity of an order edit. |
Medusa MCP Server_AdminPostOrderEditsIdItemsAction_id | This tool helps store administors. Update an added item in the order edit by the ID of the item's Every item has an |
Medusa MCP Server_AdminPostOrderEditsIdRequest | This tool helps store administors. Change the status of an active order edit to requested. |
Medusa MCP Server_AdminPostOrderEditsIdShippingMethod | This tool helps store administors. Add a shipping method to an exchange. The shipping method will have a |
Medusa MCP Server_AdminPostOrderEditsIdShippingMethodAction_id | This tool helps store administors. Update a shipping method in the order edit by the ID of the method's Every shipping method has an |
Medusa MCP Server_AdminGetOrders | This tool helps store administors. Retrieve a list of orders. The orders can be filtered by fields such as |
Medusa MCP Server_AdminGetOrdersId | This tool helps store administors. Retrieve an order by its ID. You can expand the order's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostOrdersIdArchive | This tool helps store administors. Change the status of an order to archived. |
Medusa MCP Server_AdminPostOrdersIdCancel | This tool helps store administors. Cancel an order. The cancelation fails if:
|
Medusa MCP Server_AdminGetOrdersIdChanges | This tool helps store administors. Retrieve a list of changes made on an order, including returns, exchanges, etc... The changes can be filtered by fields like FILTER FIELDS. The changes can also be paginated. |
Medusa MCP Server_AdminPostOrdersIdComplete | This tool helps store administors. Mark an order as completed. |
Medusa MCP Server_AdminPostOrdersIdFulfillments | This tool helps store administors. Create a fulfillment for an order. The creation fails if the order is canceled. |
Medusa MCP Server_AdminPostOrdersIdFulfillmentsFulfillment_idCancel | This tool helps store administors. Cancel an order's fulfillment. The fulfillment can't be canceled if it's shipped. |
Medusa MCP Server_AdminPostOrdersIdFulfillmentsFulfillment_idMarkAsDelivered | This tool helps store administors. Mark an order's fulfillment as delivered. |
Medusa MCP Server_AdminPostOrdersIdFulfillmentsFulfillment_idShipments | This tool helps store administors. Create a shipment for an order's fulfillment. |
Medusa MCP Server_AdminGetOrdersIdLineItems | This tool helps store administors. Retrieve a list of line items in a order. The line items can be filtered by fields like FILTER FIELDS. The line items can also be paginated. |
Medusa MCP Server_AdminGetOrdersIdPreview | This tool helps store administors. Retrieve a preview of an order using its associated change, such as an edit. |
Medusa MCP Server_AdminPostOrdersIdTransfer | This tool helps store administors. Request an order to be transfered to another customer. The transfer is confirmed by sending a request to the Accept Order Transfer Store API route. |
Medusa MCP Server_AdminPostOrdersIdTransferCancel | This tool helps store administors. Cancel a request to transfer an order to another customer. |
Medusa MCP Server_AdminPostPaymentCollections | This tool helps store administors. Create a payment collection. |
Medusa MCP Server_AdminDeletePaymentCollectionsId | This tool helps store administors. Delete a payment collection. |
Medusa MCP Server_AdminPostPaymentCollectionsIdMarkAsPaid | This tool helps store administors. Mark a payment collection as paid. This creates and authorizes a payment session, then capture its payment, using the manual payment provider. |
Medusa MCP Server_AdminGetPayments | This tool helps store administors. Retrieve a list of payments. The payments can be filtered by fields such as |
Medusa MCP Server_AdminGetPaymentsPaymentProviders | This tool helps store administors. Retrieve a list of payment providers. The payment providers can be filtered by fields such as |
Medusa MCP Server_AdminGetPaymentsId | This tool helps store administors. Retrieve a payment by its ID. You can expand the payment's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostPaymentsIdCapture | This tool helps store administors. Capture an amount of a payment. This uses the |
Medusa MCP Server_AdminPostPaymentsIdRefund | This tool helps store administors. Refund an amount of a payment. This uses the |
Medusa MCP Server_AdminGetPriceLists | This tool helps store administors. Retrieve a list of price lists. The price lists can be filtered by fields such as |
Medusa MCP Server_AdminGetPriceListsId | This tool helps store administors. Retrieve a price list by its ID. You can expand the price list's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostPriceListsIdPricesBatch | This tool helps store administors. Manage the prices of a price list to create, update, or delete them. |
Medusa MCP Server_AdminPostPriceListsIdProducts | This tool helps store administors. Remove products from a price list. |
Medusa MCP Server_AdminGetPricePreferences | This tool helps store administors. Retrieve a list of price preferences. The price preferences can be filtered by fields such as |
Medusa MCP Server_AdminGetPricePreferencesId | This tool helps store administors. Retrieve a price preference by its ID. You can expand the price preference's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostProductsImport | This tool helps store administors. Create a new product import process. The products aren't imported until the import is confirmed with the |
Medusa MCP Server_AdminGetProductCategories | This tool helps store administors. Retrieve a list of product categories. The product categories can be filtered by fields such as |
Medusa MCP Server_AdminGetProductCategoriesId | This tool helps store administors. Retrieve a product category by its ID. You can expand the product category's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostProductCategoriesIdProducts | This tool helps store administors. Manage products of a category to add or remove them. |
Medusa MCP Server_AdminGetProductTags | This tool helps store administors. Retrieve a list of product tags. The product tags can be filtered by fields such as |
Medusa MCP Server_AdminGetProductTagsId | This tool helps store administors. Retrieve a product tag by its ID. You can expand the product tag's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetProductTypes | This tool helps store administors. Retrieve a list of product types. The product types can be filtered by fields such as |
Medusa MCP Server_AdminGetProductTypesId | This tool helps store administors. Retrieve a product type by its ID. You can expand the product type's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetProductVariants | This tool helps store administors. Retrieve a list of product variants. The product variants can be filtered by fields such as |
Medusa MCP Server_AdminGetProducts | This tool helps store administors. Retrieve a list of products. The products can be filtered by fields such as |
Medusa MCP Server_AdminPostProductsBatch | This tool helps store administors. Manage products to create, update, or delete them. |
Medusa MCP Server_AdminPostProductsExport | This tool helps store administors. Start a product export process to retrieve a CSV of exported products. You'll receive in the response the transaction ID of the workflow generating the CSV file. To check the status of the execution, send a GET request to |
Medusa MCP Server_AdminPostProductsImportTransaction_idConfirm | This tool helps store administors. Confirm that a created product import should start importing the products into Medusa. |
Medusa MCP Server_AdminGetProductsId | This tool helps store administors. Retrieve a product by its ID. You can expand the product's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetProductsIdOptions | This tool helps store administors. Retrieve a list of options of a product. The options can be filtered by fields like |
Medusa MCP Server_AdminGetProductsIdOptionsOption_id | This tool helps store administors. Retrieve a product's option by its ID. |
Medusa MCP Server_AdminGetProductsIdVariants | This tool helps store administors. Retrieve a list of variants in a product. The variants can be filtered by fields like FILTER FIELDS. The variants can also be paginated. |
Medusa MCP Server_AdminPostProductsIdVariantsBatch | This tool helps store administors. Manage variants in a product to create, update, or delete them. |
Medusa MCP Server_AdminPostProductsIdVariantsInventoryItemsBatch | This tool helps store administors. Manage a product's variant's inventoris to associate them with inventory items, update their inventory items, or delete their association with inventory items. |
Medusa MCP Server_AdminGetProductsIdVariantsVariant_id | This tool helps store administors. Retrieve a product's variant by its ID. |
Medusa MCP Server_AdminPostProductsIdVariantsVariant_idInventoryItems | This tool helps store administors. Associate with a product variant an inventory item that manages its inventory details. |
Medusa MCP Server_AdminPostProductsIdVariantsVariant_idInventoryItemsInventory_item_id | This tool helps store administors. Update the inventory item that manages the inventory details of a product variant. |
Medusa MCP Server_AdminGetPromotions | This tool helps store administors. Retrieve a list of promotions. The promotions can be filtered by fields such as |
Medusa MCP Server_AdminGetPromotionsRuleAttributeOptionsRule_type | This tool helps store administors. Retrieve a list of potential rule attributes for the promotion and application method types specified in the query parameters. Only the attributes of the rule type specified in the path parameter are retrieved:
|
Medusa MCP Server_AdminGetPromotionsRuleValueOptionsRule_typeRule_attribute_id | This tool helps store administors. Retrieve all potential values for promotion rules and target and buy rules based on the specified rule attribute and type.
For example, if you provide the ID of the |
Medusa MCP Server_AdminGetPromotionsId | This tool helps store administors. Retrieve a promotion by its ID. You can expand the promotion's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostPromotionsIdBuyRulesBatch | This tool helps store administors. Manage the buy rules of a |
Medusa MCP Server_AdminPostPromotionsIdRulesBatch | This tool helps store administors. Manage the rules of a promotion to create, update, or delete them. |
Medusa MCP Server_AdminPostPromotionsIdTargetRulesBatch | This tool helps store administors. Manage the target rules of a promotion to create, update, or delete them. |
Medusa MCP Server_AdminGetPromotionsIdRule_type | This tool helps store administors. Retrieve a list of rules in a promotion. The type of rules retrieved depend on the value of the
|
Medusa MCP Server_AdminPostReturnsIdReceiveItems | This tool helps store administors. Add received items in a return. These items will have the action |
Medusa MCP Server_AdminGetRefundReasons | This tool helps store administors. Retrieve a list of refund reasons. The refund reasons can be filtered by fields such as |
Medusa MCP Server_AdminGetRefundReasonsId | This tool helps store administors. Retrieve a refund reason by its ID. You can expand the refund reason's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetRegions | This tool helps store administors. Retrieve a list of regions. The regions can be filtered by fields such as |
Medusa MCP Server_AdminGetRegionsId | This tool helps store administors. Retrieve a region by its ID. You can expand the region's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetReservations | This tool helps store administors. Retrieve a list of reservations. The reservations can be filtered by fields such as |
Medusa MCP Server_AdminGetReservationsId | This tool helps store administors. Retrieve a reservation by its ID. You can expand the reservation's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetReturnReasons | This tool helps store administors. Retrieve a list of return reasons. The return reasons can be filtered by fields such as |
Medusa MCP Server_AdminGetReturnReasonsId | This tool helps store administors. Retrieve a return reason by its ID. You can expand the return reason's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetReturns | This tool helps store administors. Retrieve a list of returns. The returns can be filtered by fields such as |
Medusa MCP Server_AdminGetReturnsId | This tool helps store administors. Retrieve a return by its ID. You can expand the return's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostReturnsIdCancel | This tool helps store administors. Cancel a return. |
Medusa MCP Server_AdminPostReturnsIdDismissItems | This tool helps store administors. Add damaged items, whose quantity is to be dismissed, to a return. These items will have the action |
Medusa MCP Server_AdminPostReturnsIdDismissItemsAction_id | This tool helps store administors. Update a damaged item, whose quantity is to be dismissed, in the return by the ID of the item's Every item has an |
Medusa MCP Server_AdminPostReturnsIdReceive | This tool helps store administors. Start a return receival process to be later confirmed using the |
Medusa MCP Server_AdminPostReturnsIdReceiveItemsAction_id | This tool helps store administors. Update a received item in the return by the ID of the item's Every item has an |
Medusa MCP Server_AdminPostReturnsIdReceiveConfirm | This tool helps store administors. Confirm that a return has been received. This updates the quantity of the items received, if not damaged, and reflects the changes on the order. |
Medusa MCP Server_AdminPostReturnsIdRequest | This tool helps store administors. Confirm a requested return. The changes are applied on the inventory quantity and the order only after the return has been confirmed as received using the |
Medusa MCP Server_AdminPostReturnsIdRequestItems | This tool helps store administors. Add items that are requested to be returned. These items will have the action |
Medusa MCP Server_AdminPostReturnsIdRequestItemsAction_id | This tool helps store administors. Update a requested item to be returned by the ID of the item's Every item has an |
Medusa MCP Server_AdminPostReturnsIdShippingMethod | This tool helps store administors. Add a shipping method to a return. The shipping method will have a |
Medusa MCP Server_AdminPostReturnsIdShippingMethodAction_id | This tool helps store administors. Update a shipping method of the return by the ID of the item's Every item has an |
Medusa MCP Server_AdminGetSalesChannels | This tool helps store administors. Retrieve a list of sales channels. The sales channels can be filtered by fields such as |
Medusa MCP Server_AdminGetSalesChannelsId | This tool helps store administors. Retrieve a sales channel by its ID. You can expand the sales channel's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostSalesChannelsIdProducts | This tool helps store administors. Manage products in a sales channel to add or remove them from the channel. |
Medusa MCP Server_AdminGetShippingOptions | This tool helps store administors. Retrieve a list of shipping options. The shipping options can be filtered by fields such as |
Medusa MCP Server_AdminGetShippingOptionsId | This tool helps store administors. Retrieve a shipping option by its ID. You can expand the shipping option's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostShippingOptionsIdRulesBatch | This tool helps store administors. Manage the rules of a shipping option to create, update, or delete them. |
Medusa MCP Server_AdminGetShippingProfiles | This tool helps store administors. Retrieve a list of shipping profiles. The shipping profiles can be filtered by fields such as |
Medusa MCP Server_AdminGetShippingProfilesId | This tool helps store administors. Retrieve a shipping profile by its ID. You can expand the shipping profile's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetStockLocations | This tool helps store administors. Retrieve a list of stock locations. The stock locations can be filtered by fields such as |
Medusa MCP Server_AdminGetStockLocationsId | This tool helps store administors. Retrieve a stock location by its ID. You can expand the stock location's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostStockLocationsIdFulfillmentProviders | This tool helps store administors. Manage the fulfillment providers to add or remove them from a stock location. |
Medusa MCP Server_AdminPostStockLocationsIdFulfillmentSets | This tool helps store administors. Create and add a fulfillment set to a stock location. |
Medusa MCP Server_AdminPostStockLocationsIdSalesChannels | This tool helps store administors. Manage the sales channels in a stock location by adding or removing them. |
Medusa MCP Server_AdminGetStores | This tool helps store administors. Retrieve a list of stores. The stores can be filtered by fields such as |
Medusa MCP Server_AdminGetStoresId | This tool helps store administors. Retrieve a store by its ID. You can expand the store's relations or select the fields that should be returned. |
Medusa MCP Server_AdminGetTaxRates | This tool helps store administors. Retrieve a list of tax rates. The tax rates can be filtered by fields such as |
Medusa MCP Server_AdminGetTaxRatesId | This tool helps store administors. Retrieve a tax rate by its ID. You can expand the tax rate's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostTaxRatesIdRules | This tool helps store administors. Create a tax rule for a rate. |
Medusa MCP Server_AdminDeleteTaxRatesIdRulesRule_id | This tool helps store administors. Remove a tax rate's rule. |
Medusa MCP Server_AdminGetTaxRegions | This tool helps store administors. Retrieve a list of tax regions. The tax regions can be filtered by fields such as |
Medusa MCP Server_AdminGetTaxRegionsId | This tool helps store administors. Retrieve a tax region by its ID. You can expand the tax region's relations or select the fields that should be returned. |
Medusa MCP Server_AdminPostUploads | This tool helps store administors. Upload files to the configured File Module Provider. |
Medusa MCP Server_AdminGetUploadsId | This tool helps store administors. Retrieve an uploaded file by its ID. You can expand the file's relations or select the fields that should be returned. |
datadog mcp_get-monitors | Fetch monitors from Datadog with optional filtering. Use groupStates to filter by monitor status (e.g., 'alert', 'warn', 'no data'), tags or monitorTags to filter by tag criteria, and limit to control result size. |
datadog mcp_get-monitor | Get detailed information about a specific Datadog monitor by its ID. Use this to retrieve the complete configuration, status, and other details of a single monitor. |
datadog mcp_get-dashboards | Retrieve a list of all dashboards from Datadog. Useful for discovering available dashboards and their IDs for further exploration. |
datadog mcp_get-dashboard | Get the complete definition of a specific Datadog dashboard by its ID. Returns all widgets, layout, and configuration details. |
datadog mcp_get-metrics | List available metrics from Datadog. Optionally use the q parameter to search for specific metrics matching a pattern. Helpful for discovering metrics to use in monitors or dashboards. |
datadog mcp_get-metric-metadata | Retrieve detailed metadata about a specific metric, including its type, description, unit, and other attributes. Use this to understand a metric's meaning and proper usage. |
datadog mcp_get-events | Search for events in Datadog within a specified time range. Events include deployments, alerts, comments, and other activities. Useful for correlating system behaviors with specific events. |
datadog mcp_get-incidents | List incidents from Datadog's incident management system. Can filter by active/archived status and use query strings to find specific incidents. Helpful for reviewing current or past incidents. |
datadog mcp_search-logs | Search logs in Datadog with advanced filtering options. Use filter.query for search terms (e.g., 'service status'), from/to for time ranges (e.g., 'now-15m', 'now'), and sort to order results. Essential for investigating application issues. |
datadog mcp_aggregate-logs | Perform analytical queries and aggregations on log data. Essential for calculating metrics (count, avg, sum, etc.), grouping data by fields, and creating statistical summaries from logs. Use this when you need to analyze patterns or extract metrics from log data. |
MCP-FREDAPI_get_fred_series_observations | Get series observations from the Fred API. |
Youtube Vision MCP_summarize_youtube_video | Generates a summary of a given YouTube video URL using Gemini Vision API. |
Youtube Vision MCP_ask_about_youtube_video | Answers a question about the video or provides a general description if no question is asked. |
Youtube Vision MCP_extract_key_moments | Extracts key moments (timestamps and descriptions) from a given YouTube video. |
Youtube Vision MCP_list_supported_models | Lists available Gemini models that support the 'generateContent' method. |
Agentset_knowledge-base-retrieve | Look up information in the Knowledge Base. Use this tool when you need to:
|
MCP Microsoft Teams Server_start_thread | Start a new thread with a given title and content |
MCP Microsoft Teams Server_update_thread | Update an existing thread with new content |
MCP Microsoft Teams Server_read_thread | Read replies in a thread |
MCP Microsoft Teams Server_list_threads | List threads in channel with pagination |
MCP Microsoft Teams Server_get_member_by_name | Get a member by its name |
MCP Microsoft Teams Server_list_members | List all members in the team |
BloodHound MCP_tool://list_network_shares_ignoring_sysvol | List network share(s), ignoring SYSVOL |
BloodHound MCP_tool://list_all_groups | List all group(s) |
BloodHound MCP_tool://list_all_gpos | List all GPO(s) |
BloodHound MCP_tool://list_all_aad_groups_synchronized_with_ad | [WIP] List all AAD Group(s) that are synchronized with AD (Required: azurehound) |
BloodHound MCP_tool://list_all_enabled_azure_users_group_memberships | List all enabled Azure User(s) Azure Group membership(s) (Required: azurehound) |
BloodHound MCP_tool://list_all_principals_used_for_syncing_ad_and_aad | [WIP] List all principal(s) used for syncing AD and AAD |
BloodHound MCP_tool://list_all_enabled_azure_users | List all enabled Azure User(s) (Required: azurehound) |
BloodHound MCP_tool://list_privileges_for_certificate_authority_servers | [WIP] List privileges for Certificate Authority server(s) [Required: Certipy] |
BloodHound MCP_tool://list_all_certificate_templates | List all Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://find_enabled_certificate_templates | Find enabled Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_all_enrollment_rights_for_certificate_templates | [WIP] List all Enrollment Right(s) for Certificate Template(s) |
BloodHound MCP_tool://run_query | Cypher Args: query: Cypher parameters: Returns: |
BloodHound MCP_tool://users_with_most_local_admin_rights | [WIP] Users with Most Local Admin Rights |
BloodHound MCP_tool://computers_with_most_sessions | [WIP] Computers with Most Sessions [Required: sessions] |
BloodHound MCP_tool://users_with_most_sessions | [WIP] Users with Most Sessions [Required: sessions] |
BloodHound MCP_tool://non_privileged_users_with_dangerous_permissions | List non-privileged user(s) with dangerous permissions to any node type |
BloodHound MCP_tool://route_non_privileged_users_with_dangerous_permissions | Route non-privileged user(s) with dangerous permissions to any node type |
BloodHound MCP_tool://users_with_most_cross_domain_sessions | [WIP] Users with most cross-domain sessions [Required: sessions] |
BloodHound MCP_tool://list_high_value_targets | List high value target(s) |
BloodHound MCP_tool://list_domains | List domain(s) |
BloodHound MCP_tool://list_domain_trusts | List domain trust(s) |
BloodHound MCP_tool://list_enabled_users | List enabled user(s) |
BloodHound MCP_tool://list_enabled_users_with_email | List enabled user(s) with an email address |
BloodHound MCP_tool://list_non_managed_service_accounts | List non-managed service account(s) |
BloodHound MCP_tool://list_enabled_principals_with_unconstrained_delegation | List enabled principal(s) with "Unconstrained Delegation" |
BloodHound MCP_tool://list_enabled_principals_with_constrained_delegation | List enabled principal(s) with "Constrained Delegation" |
BloodHound MCP_tool://list_domain_controllers | List domain controller(s) |
BloodHound MCP_tool://list_domain_computers | List domain computer(s) |
BloodHound MCP_tool://list_certificate_authority_servers | List Certificate Authority server(s) [Required: Certipy] |
BloodHound MCP_tool://list_computers_without_laps | List computer(s) WITHOUT LAPS |
BloodHound MCP_tool://list_all_principals_with_local_admin_permission | List all principal(s) with "Local Admin" permission |
BloodHound MCP_tool://list_all_principals_with_rdp_permission | List all principal(s) with "RDP" permission |
BloodHound MCP_tool://list_all_principals_with_sqladmin_permission | List all principal(s) with "SQLAdmin" permission |
BloodHound MCP_tool://list_all_user_sessions | List all user session(s) [Required: sessions] |
BloodHound MCP_tool://list_all_users_with_description_field | List all user(s) with description field |
BloodHound MCP_tool://list_all_enabled_users_with_userpassword_attribute | List all enabled user(s) with "userpassword" attribute |
BloodHound MCP_tool://list_all_enabled_users_with_password_never_expires | List all enabled user(s) with "password never expires" attribute |
BloodHound MCP_tool://list_all_enabled_users_with_password_never_expires_not_changed_last_year | List all enabled user(s) with "password never expires" attribute and not changed in last year |
BloodHound MCP_tool://list_all_enabled_users_with_no_password_required | List all enabled user(s) with "don't require passwords" attribute |
BloodHound MCP_tool://list_all_enabled_users_never_logged_in | List all enabled user(s) but never logged in |
BloodHound MCP_tool://list_all_enabled_users_logged_in_last_90_days | List all enabled user(s) that logged in within the last 90 days |
BloodHound MCP_tool://list_all_enabled_users_set_password_last_90_days | List all enabled user(s) that set password within the last 90 days |
BloodHound MCP_tool://list_all_enabled_users_with_foreign_group_membership | List all enabled user(s) with foreign group membership |
BloodHound MCP_tool://list_all_owned_users | List all owned user(s) |
BloodHound MCP_tool://list_all_owned_enabled_users | List all owned & enabled user(s) |
BloodHound MCP_tool://list_all_owned_enabled_users_with_email | List all owned & enabled user(s) with an email address |
BloodHound MCP_tool://list_all_owned_enabled_users_with_local_admin_and_sessions | List all owned & enabled user(s) with "Local Admin" permission, and any active sessions and their group membership(s) |
BloodHound MCP_tool://list_all_owned_enabled_users_with_rdp_and_sessions | List all owned & enabled user(s) with "RDP" permission, and any active sessions and their group membership(s) |
BloodHound MCP_tool://list_all_owned_enabled_users_with_sqladmin | List all owned & enabled user(s) with "SQLAdmin" permission |
BloodHound MCP_tool://list_all_owned_computers | List all owned computer(s) |
BloodHound MCP_tool://route_all_owned_enabled_group_memberships | Route all owned & enabled group membership(s) |
BloodHound MCP_tool://route_all_owned_enabled_non_privileged_group_memberships | Route all owned & enabled non-privileged group(s) membership |
BloodHound MCP_tool://route_all_owned_enabled_privileged_group_memberships | Route all owned & enabled privileged group(s) membership |
BloodHound MCP_tool://route_all_owned_enabled_users_with_dangerous_rights_to_any_node | Route all owned & enabled user(s) with Dangerous Rights to any node type |
BloodHound MCP_tool://route_all_owned_enabled_users_with_dangerous_rights_to_groups | Route all owned & enabled user(s) with Dangerous Rights to group(s) |
BloodHound MCP_tool://route_all_owned_enabled_users_with_dangerous_rights_to_users | Route all owned & enabled user(s) with Dangerous Rights to user(s) |
BloodHound MCP_tool://route_from_owned_enabled_users_to_unconstrained_delegation | Route from owned & enabled user(s) to all principals with "Unconstrained Delegation" |
BloodHound MCP_tool://route_from_owned_enabled_principals_to_high_value_targets | Route from owned & enabled principals to high value target(s) |
BloodHound MCP_tool://find_all_owned_users_with_privileged_access_to_azure_tenancy | Owned: [WIP] Find all owned user with privileged access to Azure Tenancy (Required: azurehound) |
BloodHound MCP_tool://find_all_owned_users_where_group_grants_azure_privileged_access | Owned: [WIP] Find all owned user where group membership grants privileged access to Azure Tenancy (Required: azurehound) |
BloodHound MCP_tool://find_all_owners_of_azure_applications_with_dangerous_rights | Owned: [WIP] Find all Owners of Azure Applications with Owners to Service Principals with Dangerous Rights (Required: azurehound) |
BloodHound MCP_tool://find_all_owned_groups_granting_network_share_access | Find all owned groups that grant access to network shares |
BloodHound MCP_tool://route_all_sessions_to_computers_without_laps | Route all sessions to computers WITHOUT LAPS (Required: sessions) |
BloodHound MCP_tool://route_all_sessions_to_computers | Route all sessions to computers (Required: sessions) |
BloodHound MCP_tool://list_enabled_non_privileged_users_with_local_admin | List enabled non-privileged user(s) with "Local Admin" permission |
BloodHound MCP_tool://list_enabled_non_privileged_users_with_local_admin_and_sessions | List enabled non-privileged user(s) with "Local Admin" permission, and any active sessions and their group membership(s) |
BloodHound MCP_tool://list_enabled_non_privileged_users_with_rdp | List enabled non-privileged user(s) with "RDP" permission |
BloodHound MCP_tool://list_enabled_non_privileged_users_with_rdp_and_sessions | List enabled non-privileged user(s) with "RDP" permission, and any active sessions and their group membership(s) |
BloodHound MCP_tool://list_enabled_non_privileged_users_with_sqladmin | List enabled non-privileged user(s) with "SQLAdmin" permission |
BloodHound MCP_tool://list_all_domain_users_group_memberships | List all "Domain Users" group membership(s) |
BloodHound MCP_tool://list_all_authenticated_users_group_memberships | List all "Authenticated Users" group membership(s) |
BloodHound MCP_tool://find_all_enabled_as_rep_roastable_users | Find all enabled AS-REP roastable user(s) |
BloodHound MCP_tool://find_all_enabled_kerberoastable_users | Find all enabled kerberoastable user(s) |
BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_users | Route non-privileged user(s) with dangerous rights to user(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_groups | Route non-privileged user(s) with dangerous rights to group(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_computers | Route non-privileged user(s) with dangerous rights to computer(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_gpos | Route non-privileged user(s) with dangerous rights to GPO(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_users_with_dangerous_rights_to_privileged_nodes | Route non-privileged user(s) with dangerous rights to privileged node(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_users | Route non-privileged computer(s) with dangerous rights to user(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_groups | Route non-privileged computer(s) with dangerous rights to group(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_computers | Route non-privileged computer(s) with dangerous rights to computer(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_gpos | Route non-privileged computer(s) with dangerous rights to GPO(s) [HIGH RAM] |
BloodHound MCP_tool://route_non_privileged_computers_with_dangerous_rights_to_privileged_nodes | Route non-privileged computer(s) with dangerous rights to privileged node(s) [HIGH RAM] |
BloodHound MCP_tool://list_esc1_vulnerable_certificate_templates | List ESC1 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_esc2_vulnerable_certificate_templates | List ESC2 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_esc3_vulnerable_certificate_templates | List ESC3 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_esc4_vulnerable_certificate_templates | List ESC4 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_esc6_vulnerable_certificate_templates | List ESC6 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_esc7_vulnerable_certificate_templates | List ESC7 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_esc8_vulnerable_certificate_templates | List ESC8 vulnerable Certificate Template(s) [Required: Certipy] |
BloodHound MCP_tool://list_all_cross_domain_user_sessions_and_memberships | List all cross-domain user session(s) and user group membership(s) |
BloodHound MCP_tool://list_privileged_users_without_protected_users | List privileged user(s) without "Protected Users" group membership |
BloodHound MCP_tool://list_custom_privileged_groups | List custom privileged group(s) |
BloodHound MCP_tool://list_enabled_svc_accounts_with_privileged_group_memberships | List all enabled SVC account(s) with privileged group membership(s) |
BloodHound MCP_tool://route_privileged_users_with_sessions_to_non_privileged_computers | Route all privileged user(s) with sessions to non-privileged computer(s) [Required: sessions] |
BloodHound MCP_tool://find_allshortestpaths_with_dangerous_rights_to_adminsdholder | Find allshortestpaths with dangerous rights to AdminSDHolder object |
BloodHound MCP_tool://find_allshortestpaths_with_dcsync_to_domain | Find allshortestpaths with DCSync to domain object |
BloodHound MCP_tool://find_allshortestpaths_with_shadow_credential_permission | Find allshortestpaths with Shadow Credential permission to principal(s) |
BloodHound MCP_tool://list_all_tenancy | List all Tenancy (Required: azurehound) |
BloodHound MCP_tool://list_all_ad_principals_with_edges_to_azure_principals | [WIP] List all AD principal(s) with edge(s) to Azure principal(s) (Required: azurehound) |
BloodHound MCP_tool://list_all_principals_with_privileged_access_to_azure_tenancy | [WIP] List all principal(s) with privileged access to Azure Tenancy (Required: azurehound) |
BloodHound MCP_tool://route_principals_to_azure_applications_and_service_principals | [WIP] Route all principal(s) that have control permissions to Azure Application(s) running as Azure Service Principals (AzSP), and route from privileged ASP to Azure Tenancy (Required: azurehound) |
BloodHound MCP_tool://route_user_principals_to_azure_service_principals | [WIP] Route all user principal(s) that have control permissions to Azure Service Principals (AzSP), and route from AzSP to principal(s) (Required: azurehound) |
BloodHound MCP_tool://route_azure_users_with_dangerous_rights_to_users | [WIP] Route from Azure User principal(s) that have dangerous rights to Azure User and User principal(s) (Required: azurehound) |
BloodHound MCP_tool://route_principals_to_azure_vm | [WIP] Route from principal(s) to Azure VM (Required: azurehound) |
BloodHound MCP_tool://route_principals_to_global_administrators | [WIP] Route from principal(s) to principal(s) with Global Administrator permissions (Required: azurehound) |
Azure Resource Graph MCP Server_query-resources | Retrieves resources and their details from Azure Resource Graph. Use this tool to search, filter, and analyze Azure resources across subscriptions. It supports Kusto Query Language (KQL) for complex queries to find resources by type, location, tags, or properties. Useful for infrastructure auditing, resource inventory, compliance checking, and understanding your Azure environment's current state. |
Seoul Public Data MCP Server_KoreaSeoulSubwayStatus | YYYYMMDD , . , "" "" . "1", "2" . |
Seoul Public Data MCP Server_CulturalEventInfo | , , , , , , , . |
Instagram Video Downloader MCP Server_download | Instagram downloader |
GitHub Action Trigger MCP Server_get_github_actions | Get available GitHub Actions for a repository |
GitHub Action Trigger MCP Server_get_github_action | Get detailed information about a specific GitHub Action, including inputs and their requirements |
GitHub Action Trigger MCP Server_trigger_github_action | Trigger a GitHub workflow dispatch event with custom inputs |
GitHub Action Trigger MCP Server_get_github_release | Get the latest 2 releases from a GitHub repository |
MCP Gemini Server_exampleTool | An example tool that takes a name and returns a greeting message. Demonstrates the basic structure of an MCP tool using Zod for parameter definition. |
MCP Gemini Server_gemini_generateContent | Generates non-streaming text content using a specified Google Gemini model. This tool takes a text prompt and returns the complete generated response from the model. It's suitable for single-turn generation tasks where the full response is needed at once. Optional parameters allow control over generation (temperature, max tokens, etc.) and safety settings. |
MCP Gemini Server_gemini_generateContentStream | Generates text content as a stream using a specified Google Gemini model. This tool takes a text prompt and streams back chunks of the generated response as they become available. It's suitable for interactive use cases or handling long responses. Optional parameters allow control over generation and safety settings. |
MCP Gemini Server_gemini_functionCall | Generates content using a specified Google Gemini model, enabling the model to request execution of predefined functions. This tool accepts function declarations and returns either the standard text response OR the details of a function call requested by the model. NOTE: This tool only returns the request for a function call; it does not execute the function itself. |
MCP Gemini Server_gemini_startChat | Initiates a new stateful chat session with a specified Gemini model. Returns a unique sessionId to be used in subsequent chat messages. Optionally accepts initial conversation history and session-wide generation/safety configurations. |
MCP Gemini Server_gemini_sendMessage | Sends a message to an existing Gemini chat session, identified by its sessionId. Returns the model's response, which might include text or a function call request. |
MCP Gemini Server_gemini_sendFunctionResult | Sends the result(s) of function execution(s) back to an existing Gemini chat session, identified by its sessionId. Returns the model's subsequent response. |
MCP Gemini Server_gemini_uploadFile | Uploads a file (specified by a local path) to be used with the Gemini API. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Returns metadata about the uploaded file, including its unique name and URI. |
MCP Gemini Server_gemini_listFiles | Lists files previously uploaded to the Gemini API. Supports pagination to handle large numbers of files. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Returns a list of file metadata objects and potentially a token for the next page. |
MCP Gemini Server_gemini_getFile | Retrieves metadata for a specific file previously uploaded to the Gemini API. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Requires the unique file name (e.g., 'files/abc123xyz'). |
MCP Gemini Server_gemini_deleteFile | Deletes a specific file previously uploaded to the Gemini API. NOTE: This API is not supported on Vertex AI clients. It only works with Google AI Studio API keys. Requires the unique file name (e.g., 'files/abc123xyz'). Returns a success confirmation. |
MCP Gemini Server_gemini_createCache | Creates a cached content resource for a compatible Gemini model. Caching can reduce latency and costs for prompts that are reused often. NOTE: Caching is only supported for specific models (e.g., gemini-1.5-flash, gemini-1.5-pro). Returns metadata about the created cache. |
MCP Gemini Server_gemini_listCaches | Lists cached content resources available for the project. Supports pagination. Returns a list of cache metadata objects and potentially a token for the next page. |
MCP Gemini Server_gemini_getCache | Retrieves metadata for a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz'). |
MCP Gemini Server_gemini_updateCache | Updates metadata (TTL and/or displayName) for a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz'). Returns the updated cache metadata. |
MCP Gemini Server_gemini_deleteCache | Deletes a specific cached content resource. Requires the unique cache name (e.g., 'cachedContents/abc123xyz'). Returns a success confirmation. |
MindManager MCP Server_get_mindmap | |
MindManager MCP Server_get_selection | |
MindManager MCP Server_get_library_folder | |
MindManager MCP Server_get_mindmanager_version | |
MindManager MCP Server_get_grounding_information | |
MindManager MCP Server_serialize_current_mindmap_to_mermaid | |
MindManager MCP Server_serialize_current_mindmap_to_markdown | |
MindManager MCP Server_serialize_current_mindmap_to_json | |
MindManager MCP Server_get_versions | |
MIDI File MCP_get_midi_info | Get midi file info |
MIDI File MCP_set_tempo | Set tempo for midi file |
MIDI File MCP_get_tracks_info | Get tracks info from midi file |
MIDI File MCP_get_track_info_by_index | Get track info from midi file by track index. name, instrument, channel, endOfTrackTicks, duration, durationTicks, noteCount |
MIDI File MCP_get_notes_by_index | Get notes from midi file by track index |
MIDI File MCP_get_pitchbends_by_index | Get pitchbends from midi file by track index |
MIDI File MCP_get_controlchanges_by_index | Get controlchanges from midi file by track index |
MIDI File MCP_add_notes_by_index | Add notes to midi file by track index |
MIDI File MCP_add_controlchanges_by_index | Add controlchanges to midi file by track index |
MIDI File MCP_add_pitchbends_by_index | Add pitchbends to midi file by track index |
MIDI File MCP_add_track | Add a new track to midi file and return the new track info |
peacock-mcp_fetch-peacock-docs | Fetches the Peacock for VS Code extension docs from its GitHub repository and answers questions based on the documentation |
Gong MCP Server_list_calls | List Gong calls with optional date range filtering. Returns call details including ID, title, start/end times, participants, and duration. |
Gong MCP Server_retrieve_transcripts | Retrieve transcripts for specified call IDs. Returns detailed transcripts including speaker IDs, topics, and timestamped sentences. |
memento-mcp_read_graph | Read the entire Memento MCP knowledge graph memory system |
memento-mcp_get_entity_embedding | Get the vector embedding for a specific entity from your Memento MCP knowledge graph memory |
memento-mcp_search_nodes | Search for nodes in your Memento MCP knowledge graph memory based on a query |
memento-mcp_open_nodes | Open specific nodes in your Memento MCP knowledge graph memory by their names |
memento-mcp_semantic_search | Search for entities semantically using vector embeddings and similarity in your Memento MCP knowledge graph memory |
memento-mcp_create_entities | Create multiple new entities in your Memento MCP knowledge graph memory system |
memento-mcp_create_relations | Create multiple new relations between entities in your Memento MCP knowledge graph memory. Relations should be in active voice |
memento-mcp_add_observations | Add new observations to existing entities in your Memento MCP knowledge graph memory |
memento-mcp_delete_entities | Delete multiple entities and their associated relations from your Memento MCP knowledge graph memory |
memento-mcp_delete_observations | Delete specific observations from entities in your Memento MCP knowledge graph memory |
memento-mcp_delete_relations | Delete multiple relations from your Memento MCP knowledge graph memory |
memento-mcp_get_relation | Get a specific relation with its enhanced properties from your Memento MCP knowledge graph memory |
memento-mcp_update_relation | Update an existing relation with enhanced properties in your Memento MCP knowledge graph memory |
memento-mcp_get_entity_history | Get the version history of an entity from your Memento MCP knowledge graph memory |
memento-mcp_get_relation_history | Get the version history of a relation from your Memento MCP knowledge graph memory |
memento-mcp_get_graph_at_time | Get your Memento MCP knowledge graph memory as it existed at a specific point in time |
memento-mcp_get_decayed_graph | Get your Memento MCP knowledge graph memory with confidence values decayed based on time |
memento-mcp_force_generate_embedding | Forcibly generate and store an embedding for an entity in your Memento MCP knowledge graph memory |
memento-mcp_debug_embedding_config | Debug tool to check embedding configuration and status of your Memento MCP knowledge graph memory system |
memento-mcp_diagnose_vector_search | Diagnostic tool to directly query Neo4j database for entity embeddings, bypassing application abstractions |
mmnt-mcp-server_mmnt_search | Search in Mamont search engine |
mmnt-mcp-server_mmnt_cache | Extract page from Mamont cache |
Runbook_create_runbook | - |
Runbook_delete_runbook | - |
mcp-n8n-builder_list_available_nodes | Lists all available nodes in the n8n instance. Use this tool BEFORE creating or updating workflows to ensure you only use valid node types. This helps prevent errors caused by using node types that do not exist in the current n8n instance. |
mcp-n8n-builder_list_workflows | Lists all workflows from n8n with their basic information including ID, name, status, creation date, and tags. Use this tool to get an overview of available workflows before performing operations on specific workflows. Results can be filtered by active status, tags, or name. |
mcp-n8n-builder_create_workflow | Creates a new workflow in n8n with specified nodes and connections. Note that only workflows with automatic trigger nodes (schedule, webhook, etc.) can be activated - workflows with only manual triggers cannot be activated. Returns the created workflow with its assigned ID. |
mcp-n8n-builder_get_workflow | Retrieves complete details of a specific workflow by its ID, including all nodes, connections, settings, and metadata. Use this tool when you need to examine a workflow's structure before updating it or to understand how it works. |
mcp-n8n-builder_update_workflow | Updates an existing workflow with new configuration. Typically used after retrieving a workflow with get_workflow, modifying its structure, and then saving the changes. The entire workflow structure must be provided, not just the parts being changed. |
mcp-n8n-builder_delete_workflow | Permanently deletes a workflow by its ID. This action cannot be undone, so use with caution. Consider deactivating workflows instead if you might need them again later. |
mcp-n8n-builder_activate_workflow | Activates a workflow by its ID, enabling it to run automatically based on its trigger (schedule, webhook, etc.). Note that only workflows with automatic trigger nodes can be activated - workflows with only manual triggers cannot be activated. |
mcp-n8n-builder_deactivate_workflow | Deactivates a workflow by its ID, preventing it from running automatically. The workflow will still exist and can be manually executed or reactivated later. Use this instead of deleting workflows that you might need again. |
mcp-n8n-builder_list_executions | Lists workflow execution history with details on success/failure status, duration, and timestamps. Use this tool to monitor workflow performance, troubleshoot issues, or verify that workflows are running as expected. Results can be filtered by workflow ID, status, and limited to a specific number. |
mcp-n8n-builder_get_execution | Retrieves detailed information about a specific workflow execution, including execution time, status, and optionally the full data processed at each step. Particularly useful for debugging failed workflows or understanding data transformations between nodes. |
test-1_compress_local_image | Compress a local image file |
test-1_compress_remote_image | Compress a remote image file by giving the URL of the image |
test-1_resize_image | Resize an image file |
mcp-openvision_image_analysis | |
PlayFab MCP Server_search_items | PlayFab search items |
PlayFab MCP Server_get_all_segments | PlayFab get all segments |
PlayFab MCP Server_get_all_players | PlayFab get all players |
TianGong-LCA-MCP Server_Weaviate Hybrid Search with Extension | Hybrid search in Weaviate with context extension |
TianGong-LCA-MCP Server_Search_ESG_Tool | Perform search on ESG database. |
Dynamics 365 MCP Server_get-user-info | Get user info from Dynamics 365 |
Dynamics 365 MCP Server_fetch-accounts | Fetch accounts from Dynamics 365 |
Dynamics 365 MCP Server_get-associated-opportunities | Fetch opportunities for a given account from Dynamics 365 |
Dynamics 365 MCP Server_create-account | Create a new account in Dynamics 365 |
Dynamics 365 MCP Server_update-account | Update an existing account in Dynamics 365 |
mcp-svstudio_list_tracks | List all tracks in the current project |
mcp-svstudio_get_track_notes | Get all notes in a specific track |
mcp-svstudio_add_notes | Add one or more notes to a track |
mcp-svstudio_add_track | Add a new track to the project |
mcp-svstudio_get_project_info | Get information about the current Synthesizer V Studio project |
mcp-svstudio_edit_notes | Edit one or more notes |
mcp-yeoman_get_ticker_info | Retrieve information about a specific stock symbol using Yahoo Finance API. |
mcp-yeoman_get_ticker_news | Fetches news articles for a given stock ticker symbol. |
mcp-yeoman_search_quote | Search for quotes using a query string. |
mcp-yeoman_search_news | Search for news articles using a query string. |
mcp-yeoman_get_top_etfs | Retrieve the top ETFs in a specific sector. |
mcp-yeoman_get_top_mutual_funds | Retrieve the top mutual funds in a specific sector. |
mcp-yeoman_get_top_companies | Retrieve the top companies in a specific sector. |
mcp-yeoman_get_top_growth_companies | Retrieve the top growth companies in a specific sector. |
mcp-yeoman_get_top_performing_companies | Retrieve the top performing companies in a specific sector. |
mcp-yeoman_analyze_sentiment | You are a sentiment analysis tool. Based on the provided rationale, analyze the sentiment for the given stock symbol. Please ensure that your analysis is objective and unbiased. |
Source Map Parser MCP Server_operating_guide | Parse Error Stack TraceThis tool allows you to parse error stack traces by mapping them to the corresponding source code locations using source maps. It is particularly useful for debugging production errors where the stack trace points to minified or obfuscated code. |
Source Map Parser MCP Server_parse_stack | Parse Error Stack TraceThis tool allows you to parse error stack traces by providing the following:
The tool will map the provided stack trace information to the corresponding source code location using the source map. It also supports fetching additional context lines around the error location for better debugging. Parameters:
Returns:
|
DefectDojo MCP Server_update_finding_status | Update the status of a finding (Active, Verified, False Positive, Mitigated, Inactive) |
DefectDojo MCP Server_add_finding_note | Add a note to a finding |
DefectDojo MCP Server_get_findings | Get findings with filtering options and pagination support |
DefectDojo MCP Server_search_findings | Search for findings using a text query with pagination support |
DefectDojo MCP Server_create_finding | Create a new finding |
DefectDojo MCP Server_list_products | List all products with optional filtering and pagination support |
DefectDojo MCP Server_list_engagements | List engagements with optional filtering and pagination support |
DefectDojo MCP Server_get_engagement | Get a specific engagement by ID |
DefectDojo MCP Server_create_engagement | Create a new engagement |
DefectDojo MCP Server_update_engagement | Update an existing engagement |
DefectDojo MCP Server_close_engagement | Close an engagement |
Asset Price MCP Server_get_asset_price | Retrieves current pricing information for various assets including precious metals and cryptocurrencies |
Ankr API MCP Server_get_token_balances_on_network | Gets all token balances for a given address on a specific network |
Ableton Copilot MCP_crop_clip | Crops the clip. The region that is cropped depends on whether the clip is looped or not. If looped, the region outside of the loop is removed. If not looped, the region outside the start and end markers is removed. |
Ableton Copilot MCP_duplicate_clip_loop | Makes the loop twice as long and duplicates notes and envelopes. Duplicates the clip start/end range if the clip is not looped. |
Ableton Copilot MCP_get_detail_clip | Get detail clip/piano roll clip |
Ableton Copilot MCP_get_clip_info_by_id | Get clip info by clip id |
Ableton Copilot MCP_get_all_notes_by_clipid | Get clip all notes by clip id |
Ableton Copilot MCP_remove_clip_all_notes | Remove clip all notes by clip id |
Ableton Copilot MCP_add_notes_to_clip | Add notes to clip by clip id |
Ableton Copilot MCP_replace_all_notes_to_clip | Replace clip all notes by clip id |
Ableton Copilot MCP_set_clip_property | set clip property |
Ableton Copilot MCP_duplicate_clip_region | Duplicates the notes in the specified region to the destination_time. Only notes of the specified pitch are duplicated if pitch is not -1. If the transposition_amount is not 0, the notes in the region will be transposed by the transposition_amount of semitones. Raises an error on audio clips.. |
Ableton Copilot MCP_get_song_info | get song basic info, include tempo, time signature, root_note(begin from 0, C..B), scale name, song length |
Ableton Copilot MCP_get_all_tracks | get all tracks |
Ableton Copilot MCP_get_tracks_count | get midi + audio tracks count |
Ableton Copilot MCP_create_track | create track and return raw track |
Ableton Copilot MCP_delete_track | delete track by index |
Ableton Copilot MCP_duplicate_track | duplicate midi or audio track by index |
Ableton Copilot MCP_record_by_time_range | Opens Ableton's audio record button and starts playback from start_time to end_time. Before recording, please: ENSURE: 1. Set the recording track to record mode 2. Set the recording track's input routing to Resample or a specific audio track/input routing 3. After recording, disable the track's record mode |
Ableton Copilot MCP_get_clips_by_track_id | get all clip by track id |
Ableton Copilot MCP_get_track_info_by_id | get track info by id |
Ableton Copilot MCP_create_empty_midi_clip | create empty midi clip on track |
Ableton Copilot MCP_set_track_property | set track property |
Ableton Copilot MCP_duplicate_clip_to_track | duplicate clip to track |
Ableton Copilot MCP_get_track_available_input_routings | get track available input routings |
Magic Component Platform_21st_magic_component_builder | "Use this tool when the user requests a new UI componente.g., mentions /ui, /21 /21st, or asks for a button, input, dialog, table, form, banner, card, or other React component. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase." |
Magic Component Platform_logo_search | Search and return logos in specified format (JSX, TSX, SVG). Supports single and multiple logo searches with category filtering. Can return logos in different themes (light/dark) if available. When to use this tool:
Example queries:
Format options:
Each result includes:
|
Magic Component Platform_21st_magic_component_inspiration | "Use this tool when the user wants to see component, get inspiration, or /21st fetch data and previews from 21st.dev. This tool returns the JSON data of matching components without generating new code. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase." |
Vibe Coder MCP_research | Performs deep research on a given topic using Perplexity Sonar and enhances the result. |
Vibe Coder MCP_generate-rules | Creates project-specific development rules based on product description, user stories, and research. |
Vibe Coder MCP_generate-prd | Creates comprehensive product requirements documents based on a product description and research. |
Vibe Coder MCP_generate-user-stories | Creates detailed user stories with acceptance criteria based on a product description and research. |
Vibe Coder MCP_generate-task-list | Creates structured development task lists with dependencies based on product description, user stories, and research. |
Vibe Coder MCP_generate-fullstack-starter-kit | Generates full-stack project starter kits with custom tech stacks, research-informed recommendations, and setup scripts. |
Vibe Coder MCP_generate-code-stub | Generates a code stub (function, class, etc.) in a specified language based on a description. Can optionally use content from a file (relative path) as context. |
Vibe Coder MCP_refactor-code | Refactors a given code snippet based on specific instructions, optionally using surrounding file context. |
Vibe Coder MCP_generate-git-summary | Retrieves a summary of current Git changes (diff). Can show staged or unstaged changes. |
Vibe Coder MCP_analyze-dependencies | Analyzes dependency manifest files (currently supports package.json) to list project dependencies. |
Vibe Coder MCP_process-request | Processes natural language requests, determines the best tool using semantic matching and fallbacks, and either asks for confirmation or executes the tool directly. |
SiYuan Note MCP Server_executeCommand | - |
SiYuan Note MCP Server_queryCommands | - |
SiYuan Note MCP Server_help | - |
CMR Model Context Protocol_get_datasets | Get a list of datasets form CMR based on keywords. |
AWS Nova Canvas MCP Server_text_to_image | |
AWS Nova Canvas MCP Server_inpainting | |
AWS Nova Canvas MCP Server_outpainting | |
AWS Nova Canvas MCP Server_image_variation | |
AWS Nova Canvas MCP Server_image_conditioning | |
AWS Nova Canvas MCP Server_color_guided_generation | |
AWS Nova Canvas MCP Server_background_removal | |
AWS Nova Canvas MCP Server_show_image | |
Search Intent MCP_search_intent_analysis | A tool for analyzing search intent and user behavior. Features:
Examples: "iphone 15" Product research/purchase intent "python tutorial" Learning intent Response format:
|
G-Search MCP_search | Search on Google for multiple keywords and return the results |
Google Patents MCP Server_search_patents | Searches Google Patents using SerpApi. Allows filtering by date, inventor, assignee, country, language, status, type, and sorting. |
Database Tools for Claude AI_mysql | Execute a query in MySQL |
MCP Log Reader_read_mcp_logs | Read MCP logs from the standard location |
MCP Calculate Server_calculate_expression | calculate mathematical expressions using the |
Baidu Search MCP Server_search | |
Caiyun Weather MCP Server_get_weather_by_location | - |
Caiyun Weather MCP Server_get_weather_by_address | - |
Caiyun Weather MCP Server_get_realtime_weather | - |
Caiyun Weather MCP Server_get_minutely_forecast | - |
Caiyun Weather MCP Server_get_hourly_forecast | - |
Caiyun Weather MCP Server_get_daily_forecast | - |
Caiyun Weather MCP Server_get_weather_alert | - |
Yahoo Finance MCP Server_get_ticker_info | Retrieve information about a specific stock symbol using Yahoo Finance API. |
Yahoo Finance MCP Server_get_ticker_news | Fetches news articles for a given stock ticker symbol. |
Yahoo Finance MCP Server_search_quote | Search for quotes using a query string. |
Yahoo Finance MCP Server_search_news | Search for news articles using a query string. |
Yahoo Finance MCP Server_get_top_etfs | Retrieve the top ETFs in a specific sector. |
Yahoo Finance MCP Server_get_top_mutual_funds | Retrieve the top mutual funds in a specific sector. |
Yahoo Finance MCP Server_get_top_companies | Retrieve the top companies in a specific sector. |
Yahoo Finance MCP Server_get_top_growth_companies | Retrieve the top growth companies in a specific sector. |
Yahoo Finance MCP Server_get_top_performing_companies | Retrieve the top performing companies in a specific sector. |
Yahoo Finance MCP Server_analyze_sentiment | You are a sentiment analysis tool. Based on the provided rationale, analyze the sentiment for the given stock symbol. Please ensure that your analysis is objective and unbiased. |
mcp-github-trending_get_github_trending_developers | Get trending developers on github |
mcp-github-trending_get_github_trending_repositories | Get trending repositories on github |
Freshdesk MCP server_get_ticket_fields | Get ticket fields from Freshdesk. |
Freshdesk MCP server_create_ticket_reply | Create a reply to a ticket in Freshdesk. |
Freshdesk MCP server_create_ticket_note | Create a note for a ticket in Freshdesk. |
Freshdesk MCP server_get_tickets | Get tickets from Freshdesk with pagination support. |
Freshdesk MCP server_create_ticket | Create a ticket in Freshdesk |
Freshdesk MCP server_update_ticket | Update a ticket in Freshdesk. |
Freshdesk MCP server_delete_ticket | Delete a ticket in Freshdesk. |
Freshdesk MCP server_get_ticket | Get a ticket in Freshdesk. |
Freshdesk MCP server_search_tickets | Search for tickets in Freshdesk. |
Freshdesk MCP server_get_ticket_conversation | Get a ticket conversation in Freshdesk. |
Freshdesk MCP server_update_ticket_conversation | Update a conversation for a ticket in Freshdesk. |
Freshdesk MCP server_get_agents | Get all agents in Freshdesk with pagination support. |
Freshdesk MCP server_list_contacts | List all contacts in Freshdesk with pagination support. |
Freshdesk MCP server_get_contact | Get a contact in Freshdesk. |
Freshdesk MCP server_search_contacts | Search for contacts in Freshdesk. |
Freshdesk MCP server_update_contact | Update a contact in Freshdesk. |
Freshdesk MCP server_list_canned_responses | List all canned responses in Freshdesk. |
Freshdesk MCP server_list_canned_response_folders | List all canned response folders in Freshdesk. |
Freshdesk MCP server_list_solution_articles | List all solution articles in Freshdesk. |
Freshdesk MCP server_list_solution_folders | - |
Freshdesk MCP server_list_solution_categories | List all solution categories in Freshdesk. |
Freshdesk MCP server_view_agent | View an agent in Freshdesk. |
Freshdesk MCP server_create_agent | Create an agent in Freshdesk. |
Freshdesk MCP server_update_agent | Update an agent in Freshdesk. |
Freshdesk MCP server_search_agents | Search for agents in Freshdesk. |
Scrapeless MCP Server_google-search | Fetch Google Search Results |
Omi MCP Server_read_omi_memories | Retrieves user memories from Omi with pagination options |
Omi MCP Server_create_omi_conversation | Creates a new Omi conversation with text content and metadata |
Omi MCP Server_create_omi_memories | Creates Omi memories by extracting from text or using explicit memory objects |
Omi MCP Server_read_omi_conversations | Retrieves user conversations from Omi with pagination and filtering options |
FFmpeg MCP Server_speed_up | Speed up a video |
FFmpeg MCP Server_extract_audio | Extract audio as mp3 from a video |
mcp-image-compression_image_compression | Compress an image |
AgentMail_getMessage | Get message by ID |
AgentMail_listInboxes | List all inboxes |
AgentMail_getInbox | Get inbox by ID |
AgentMail_createInbox | Create a new inbox |
AgentMail_listThreads | List threads by inbox ID |
AgentMail_getThread | Get thread by ID |
AgentMail_listMessages | List messages |
AgentMail_getAttachment | Get attachment by ID |
AgentMail_sendMessage | Send a message |
AgentMail_replyToMessage | Reply to a message |
Kali Linux MCP Server_execute_command | (ping 127.0.0.1)Kali LinuxKali LinuxLinux |
Kali Linux MCP Server_start_interactive_command | (mysql -u root -p)Kali LinuxID,close_interactive_commandexecute_command |
Kali Linux MCP Server_send_input_to_command | (AI) |
Kali Linux MCP Server_get_command_output | - |
Kali Linux MCP Server_close_interactive_command | - |
Lara Translate MCP Server_translate | Translate text between languages with support for language detection and context-aware translations. |
YouTube MCP Server_search-videos | Search for YouTube videos with advanced filtering options. Supports parameters: - query: Search term (required) - maxResults: Number of results to return (1-50) - channelId: Filter by specific channel - order: Sort by date, rating, viewCount, relevance, title - type: Filter by resource type (video, channel, playlist) - videoDuration: Filter by length (short: <4min, medium: 4-20min, long: >20min) - publishedAfter/publishedBefore: Filter by publish date (ISO format) - videoCaption: Filter by caption availability - videoDefinition: Filter by quality (standard/high) - regionCode: Filter by country (ISO country code) |
YouTube MCP Server_get-video-comments | Retrieve comments for a specific YouTube video |
YouTube MCP Server_get-video-transcript | Get the transcript/captions for a YouTube video with optional language selection. This tool retrieves the full transcript of a video with timestamped captions. Each caption includes the text and its timestamp in the video. Parameters: videoId (required) - The YouTube video ID; language (optional) - Language code for the transcript (e.g., "en", "ko", "ja"). If not specified, the default language for the video will be used. Returns a text with each caption line preceded by its timestamp. |
YouTube MCP Server_get-video-stats | Get statistical information for a specific YouTube video (views, likes, comments, upload date, etc.) |
YouTube MCP Server_get-channel-stats | Get statistical information for a specific YouTube channel (subscriber count, total views, video count, etc.) |
YouTube MCP Server_compare-videos | Compare statistics for multiple YouTube videos |
YouTube MCP Server_get-trending-videos | Retrieve trending videos by region and category. This helps analyze current popular content trends. |
YouTube MCP Server_get-video-categories | Retrieve available video categories for a specific region |
YouTube MCP Server_analyze-channel-videos | Analyze recent videos from a specific channel to identify performance trends |
YouTube MCP Server_enhanced-transcript | Advanced transcript extraction tool with filtering, search, and multi-video capabilities. Provides rich transcript data for detailed analysis and processing. This tool offers multiple advanced features: 1) Extract transcripts from multiple videos in one request; 2) Filter by time ranges to focus on specific parts; 3) Search for specific content within transcripts; 4) Segment transcripts for structural analysis; 5) Format output in different ways (raw, timestamped, merged text); 6) Include video metadata. Parameters: videoIds (required) - Array of YouTube video IDs (up to 5); language (optional) - Language code; format (optional) - Output format ("raw", "timestamped", "merged"); includeMetadata (optional) - Whether to include video details; filters (optional) - Complex filtering options including timeRange, search, and segment. |
YouTube MCP Server_get-key-moments | Extract key moments with timestamps from a video transcript for easier navigation and summarization. This tool analyzes the video transcript to identify important segments based on content density and creates a structured output with timestamped key moments. Useful for quickly navigating to important parts of longer videos. Parameters: videoId (required) - The YouTube video ID; maxMoments (optional) - Number of key moments to extract (default: 5, max: 10). Returns a formatted text with key moments and their timestamps, plus the full transcript. |
YouTube MCP Server_get-segmented-transcript | Divide a video transcript into segments for easier analysis and navigation. This tool splits the video into equal time segments and extracts the transcript for each segment with proper timestamps. Ideal for analyzing the structure of longer videos or when you need to focus on specific parts of the content. Parameters: videoId (required) - The YouTube video ID; segmentCount (optional) - Number of segments to divide the video into (default: 4, max: 10). Returns a markdown-formatted text with each segment clearly labeled with time ranges and containing the relevant transcript text. |
https://github.com/jkingsman/qanon-mcp-server_get_post_by_id_tool | |
https://github.com/jkingsman/qanon-mcp-server_search_posts | |
https://github.com/jkingsman/qanon-mcp-server_get_posts_by_date | |
https://github.com/jkingsman/qanon-mcp-server_get_posts_by_author_id | |
https://github.com/jkingsman/qanon-mcp-server_analyze_post | |
https://github.com/jkingsman/qanon-mcp-server_get_timeline_summary | |
https://github.com/jkingsman/qanon-mcp-server_word_cloud_by_post_ids | |
https://github.com/jkingsman/qanon-mcp-server_word_cloud_by_date_range | |
Marvel MCP_get_characters | Fetch Marvel characters with optional filters |
Marvel MCP_get_character_by_id | Fetch a Marvel character by ID |
Marvel MCP_get_comics_for_character | Fetch Marvel comics filtered by character ID and optional filters |
Marvel MCP_get_comics | Fetches lists of Marvel comics with optional filters |
Marvel MCP_get_comic_by_id | Fetch a single Marvel comic by ID |
Marvel MCP_get_characters_for_comic | Fetch Marvel characters for a given comic |
Marvel MCP_generate_comics_html | Create an HTML page displaying Marvel comics with their images |
mcp-sqlalchemy_podbc_get_schemas | Retrieve and return a list of all schema names from the connected database. |
mcp-sqlalchemy_podbc_get_tables | Retrieve and return a list containing information about tables in specified schema, if empty uses connection default |
mcp-sqlalchemy_podbc_describe_table | Retrieve and return a dictionary containing the definition of a table, including column names, data types, nullable, autoincrement, primary key, and foreign keys. |
mcp-sqlalchemy_podbc_filter_table_names | Retrieve and return a list containing information about tables whose names contain the substring 'q' in the format [{'schema': 'schema_name', 'table': 'table_name'}, {'schema': 'schema_name', 'table': 'table_name'}]. |
mcp-sqlalchemy_podbc_execute_query | Execute a SQL query and return results in JSONL format. |
mcp-sqlalchemy_podbc_execute_query_md | Execute a SQL query and return results in Markdown table format. |
mcp-sqlalchemy_podbc_query_database | Execute a SQL query and return results in JSONL format. |
mcp-sqlalchemy_podbc_spasql_query | Execute a SPASQL query and return results. |
mcp-sqlalchemy_podbc_sparql_query | Execute a SPARQL query and return results. |
mcp-sqlalchemy_podbc_virtuoso_support_ai | Tool to use the Virtuoso AI support function |
mcp-sqlalchemy_podbc_sparql_func | Call ???. |
Windows Command Line MCP Server_list_running_processes | List all running processes on the system. Can be filtered by providing an optional filter string that will match against process names. |
Windows Command Line MCP Server_get_system_info | Retrieve system information including OS, hardware, and user details. Can provide basic or full details. |
Windows Command Line MCP Server_get_network_info | Retrieve network configuration information including IP addresses, adapters, and DNS settings. Can be filtered to a specific interface. |
Windows Command Line MCP Server_get_scheduled_tasks | Retrieve information about scheduled tasks on the system. Can query all tasks or get detailed status of a specific task. |
Windows Command Line MCP Server_get_service_info | Retrieve information about Windows services. Can query all services or get detailed status of a specific service. |
Windows Command Line MCP Server_list_allowed_commands | List all commands that are allowed to be executed by this server. This helps understand what operations are permitted. |
Windows Command Line MCP Server_execute_command | Execute a Windows command and return its output. Only commands in the allowed list can be executed. This tool should be used for running simple commands like 'dir', 'echo', etc. |
Windows Command Line MCP Server_execute_powershell | Execute a PowerShell script and return its output. This allows for more complex operations and script execution. PowerShell must be in the allowed commands list. |
CCXT MCP Server_cache-stats | Get CCXT cache statistics |
CCXT MCP Server_clear-cache | Clear CCXT cache |
CCXT MCP Server_set-log-level | Set logging level |
CCXT MCP Server_list-exchanges | List all available cryptocurrency exchanges |
CCXT MCP Server_get-ticker | Get current ticker information for a trading pair |
CCXT MCP Server_batch-get-tickers | Get ticker information for multiple trading pairs at once |
CCXT MCP Server_get-orderbook | Get market order book for a trading pair |
CCXT MCP Server_get-ohlcv | Get OHLCV candlestick data for a trading pair |
CCXT MCP Server_get-trades | Get recent trades for a trading pair |
CCXT MCP Server_get-markets | Get all available markets for an exchange |
CCXT MCP Server_get-exchange-info | Get exchange information and status |
CCXT MCP Server_get-leverage-tiers | Get futures leverage tiers for trading pairs |
CCXT MCP Server_get-funding-rates | Get current funding rates for perpetual contracts |
CCXT MCP Server_get-market-types | Get market types supported by an exchange |
CCXT MCP Server_account-balance | Get your account balance from a crypto exchange |
CCXT MCP Server_place-market-order | Place a market order on an exchange |
CCXT MCP Server_set-leverage | Set leverage for futures trading |
CCXT MCP Server_set-margin-mode | Set margin mode for futures trading |
CCXT MCP Server_place-futures-market-order | Place a futures market order |
CCXT MCP Server_get-proxy-config | Get the current proxy configuration |
CCXT MCP Server_set-proxy-config | Configure proxy settings for all exchanges |
CCXT MCP Server_test-proxy-connection | Test the proxy connection with a specified exchange |
CCXT MCP Server_clear-exchange-cache | Clear exchange instance cache to apply configuration changes |
CCXT MCP Server_set-market-type | Set default market type for all exchanges |
MCP Atlassian Server_confluence_search | Search Confluence content using CQL |
MCP Atlassian Server_jira_search | Search Jira issues using JQL |
Yellhorn MCP_generate_work_plan | Generate a detailed work plan for implementing a task based on the current codebase. Creates a GitHub issue with customizable title and detailed description, labeled with 'yellhorn-mcp'.Note: You should generally just pass the full user task request task verbatim to detailed_description. |
Yellhorn MCP_review_work_plan | Review a pull request against the original work plan issue and provide feedback. |
MCP OpenAPI Server_refresh-api-catalog | Refresh the API catalog |
MCP OpenAPI Server_get-api-catalog | Get the API catalog, the catalog contains metadata about all openapi specifications, their operations and schemas |
MCP OpenAPI Server_search-api-operations | Search for operations across specifications |
MCP OpenAPI Server_search-api-schemas | Search for schemas across specifications |
MCP OpenAPI Server_load-api-operation-by-operationId | Load an operation by operationId |
MCP OpenAPI Server_load-api-operation-by-path-and-method | Load an operation by path and method |
MCP OpenAPI Server_load-api-schema-by-schemaName | Load a schema by schemaName |
CCXT MCP Server_fetchClosedOrders | Fetch all closed orders using a configured account |
CCXT MCP Server_listAccounts | List all configured account names |
CCXT MCP Server_fetchBalance | Fetch account balance for a configured account |
CCXT MCP Server_fetchMarkets | Fetch markets from a cryptocurrency exchange |
CCXT MCP Server_fetchTicker | Fetch ticker information for a symbol on an exchange |
CCXT MCP Server_fetchTickers | Fetch all tickers from an exchange |
CCXT MCP Server_fetchOrderBook | Fetch order book for a symbol on an exchange |
CCXT MCP Server_fetchTrades | Fetch recent trades for a symbol on an exchange |
CCXT MCP Server_fetchOHLCV | Fetch OHLCV candlestick data for a symbol on an exchange |
CCXT MCP Server_createOrder | Create a new order using a configured account |
CCXT MCP Server_cancelOrder | Cancel an existing order using a configured account |
CCXT MCP Server_fetchOrder | Fetch information about a specific order using a configured account |
CCXT MCP Server_fetchOpenOrders | Fetch all open orders using a configured account |
CCXT MCP Server_fetchDeposits | Fetch deposit history for a configured account |
CCXT MCP Server_fetchWithdrawals | Fetch withdrawal history for a configured account |
CCXT MCP Server_fetchMyTrades | Fetch personal trade history for a configured account |
CCXT MCP Server_analyzeTradingPerformance | Analyze trading performance for a configured account |
CCXT MCP Server_calculateWinRate | Calculate win rate and profit metrics for a configured account |
CCXT MCP Server_analyzeConsecutiveProfitLoss | Analyze consecutive winning and losing trades |
CCXT MCP Server_analyzePeriodicReturns | Analyze daily and monthly returns for a configured account |
mcp-nixos_nixos_search | Search for NixOS packages, options, or programs. |
mcp-nixos_nixos_info | Get detailed information about a NixOS package or option. |
mcp-nixos_nixos_stats | Get statistics about available NixOS packages and options. |
mcp-nixos_home_manager_search | Search for Home Manager options. |
mcp-nixos_home_manager_info | Get detailed information about a Home Manager option. |
mcp-nixos_home_manager_stats | Get statistics about Home Manager options. |
mcp-nixos_home_manager_list_options | List all top-level Home Manager option categories. |
mcp-nixos_home_manager_options_by_prefix | Get all Home Manager options under a specific prefix. |
mcp-nixos_darwin_search | - |
mcp-nixos_darwin_info | - |
mcp-nixos_darwin_stats | - |
mcp-nixos_darwin_list_options | - |
mcp-nixos_darwin_options_by_prefix | - |
Linear MCP Server_list_issues | List Linear issues (also called tickets) with filtering by assignee, status, and project. Use this to browse and find issues in your Linear workspace. |
Linear MCP Server_get_issue | Get detailed information about a specific Linear issue (also called a ticket), including comments if requested. |
Linear MCP Server_list_members | List Linear team members with optional filtering by name. This tool is useful for finding member details including usernames, display names, and emails. |
Linear MCP Server_list_projects | List Linear projects with optional filtering by team, name, and archive status. Shows project details including status, lead, progress, and dates. |
Linear MCP Server_get_project | Get detailed information about a Linear project including team, lead, issues, and members. Use this to see comprehensive details of a specific project. |
Linear MCP Server_list_teams | List Linear teams with details about their members, projects, and issues. Use this to get a high-level view of all teams in your Linear workspace. |
Linear MCP Server_add_comment | Add a comment to a specific Linear ticket. This tool is useful for providing feedback, status updates, or additional information on existing tickets. |
Linear MCP Server_create_issue | Create a new issue in Linear. This tool is useful for adding new tasks, bugs, or feature requests to your Linear workspace. |
Shell Command MCP Server_execute-command | execute-commandThis tool executes shell command on bash. Each command execution spawn a new bash process. |
MCP-Slicer_list_nodes | List MRML nodes via the Slicer Web Server API. The filter_type parameter specifies the type of node information to retrieve. Possible values include "names" (node names), "ids" (node IDs), and "properties" (node properties). The default value is "names". The class_name, name, and id parameters are optional and can be used to further filter nodes. The class_name parameter allows filtering nodes by class name. The name parameter allows filtering nodes by name. The id parameter allows filtering nodes by ID. Examples:
Returns a dictionary containing node information. If filter_type is "names" or "ids", the returned dictionary contains a "nodes" key, whose value is a list containing node names or IDs. Example: {"nodes": ["node1", "node2", ...]} or {"nodes": ["id1", "id2", ...]} If filter_type is "properties", the returned dictionary contains a "nodes" key, whose value is a dictionary containing node properties. Example: {"nodes": {"node1": {"property1": "value1", "property2": "value2"}, ...}} If an error occurs, a dictionary containing an "error" key is returned, whose value is a string describing the error. |
MCP-Slicer_execute_python_code | Execute Python code in 3D Slicer. Parameters: code (str): The Python code to execute. The code parameter is a string containing the Python code to be executed in 3D Slicer's Python environment.
The code should be executable by Python's Examples:
Returns: dict: A dictionary containing the execution result. Examples:
|
Tribal Knowledge Service_track_error | |
Tribal Knowledge Service_find_similar_errors | |
Tribal Knowledge Service_search_errors | |
Tribal Knowledge Service_get_error_by_id | |
Tribal Knowledge Service_delete_error | |
Tribal Knowledge Service_get_api_status | |
WhatsApp MCP Server_send-whatsapp-message | Send a message to a contact on WhatsApp |
WhatsApp MCP Server_check-whatsapp-status | Check if WhatsApp is currently running |
WhatsApp MCP Server_list-recent-contacts | List recently contacted people on WhatsApp (simplified) |
FileScopeMCP_get_file_importance | Get the importance ranking of a specific file |
FileScopeMCP_list_saved_trees | List all saved file trees |
FileScopeMCP_delete_file_tree | Delete a file tree configuration |
FileScopeMCP_create_file_tree | Create or load a file tree configuration |
FileScopeMCP_select_file_tree | Select an existing file tree to work with |
FileScopeMCP_list_files | List all files in the project with their importance rankings |
FileScopeMCP_find_important_files | Find the most important files in the project |
FileScopeMCP_get_file_summary | Get the summary of a specific file |
FileScopeMCP_set_file_summary | Set the summary of a specific file |
FileScopeMCP_read_file_content | Read the content of a specific file |
FileScopeMCP_set_file_importance | Manually set the importance ranking of a specific file |
FileScopeMCP_recalculate_importance | Recalculate importance values for all files based on dependencies |
FileScopeMCP_debug_list_all_files | List all file paths in the current file tree |
FileScopeMCP_generate_diagram | Generate a Mermaid diagram for the current file tree |
MCP Azure DevOps Server_query_work_items | |
MCP Azure DevOps Server_get_work_item_basic | |
MCP Azure DevOps Server_get_work_item_details | |
MCP Azure DevOps Server_get_work_item_comments | |
MCP Azure DevOps Server_get_projects | |
MCP Azure DevOps Server_get_all_teams | |
MCP Azure DevOps Server_get_team_members | |
MCP Azure DevOps Server_get_team_area_paths | |
MCP Azure DevOps Server_get_team_iterations | |
DocGen MCP Server_create_documentation | Create documentation from source files using a template |
DocGen MCP Server_list_templates | List available documentation templates |
DocGen MCP Server_view_document_history | View history of previously generated documents |
MCP-Server-Inbox_write_note | Write note to inBox |
Weather MCP Server_get-alerts | Get weather alerts for a state |
Weather MCP Server_get-forecast | Get weather forecast for a location |
AdsPower LocalAPI MCP Server_close-browser | Close the browser |
AdsPower LocalAPI MCP Server_create-browser | Create a browser |
AdsPower LocalAPI MCP Server_update-browser | Update the browser |
AdsPower LocalAPI MCP Server_open-browser | Open the browser |
AdsPower LocalAPI MCP Server_delete-browser | Delete the browser |
AdsPower LocalAPI MCP Server_get-browser-list | Get the list of browsers |
AdsPower LocalAPI MCP Server_get-opened-browser | Get the list of opened browsers |
AdsPower LocalAPI MCP Server_move-browser | Move browsers to a group |
AdsPower LocalAPI MCP Server_create-group | Create a browser group |
AdsPower LocalAPI MCP Server_update-group | Update the browser group |
AdsPower LocalAPI MCP Server_get-group-list | Get the list of groups |
AdsPower LocalAPI MCP Server_get-application-list | Get the list of applications |
React Native Debugger MCP_getConnectedApps | Get the connected apps |
React Native Debugger MCP_readConsoleLogsFromApp | Reads console logs from a connected React Native app through the debugger WebSocket |
Geekbot MCP_fetch_standups | Fetch standups list from Geekbot |
Geekbot MCP_fetch_reports | Fetch reports list from Geekbot |
MCP Server Flomo_write_note | Write note to flomo |
coindesk-mcp_read_news | |
coindesk-mcp_recent_news | |
mcp-scholar_scholar_search | |
mcp-scholar_adaptive_search | |
mcp-scholar_paper_detail | |
mcp-scholar_paper_references | |
mcp-scholar_profile_papers | |
mcp-scholar_summarize_papers | |
mcp-scholar_health_check | |
Crunchbase MCP Server_search_companies | Search for companies based on various criteria |
Crunchbase MCP Server_get_company_details | Get detailed information about a specific company |
Crunchbase MCP Server_get_funding_rounds | Get funding rounds for a specific company |
Crunchbase MCP Server_get_acquisitions | Get acquisitions made by or of a specific company |
Crunchbase MCP Server_search_people | Search for people based on various criteria |
APISIX-MCP_get_plugin_metadata | Get metadata for a specific plugin |
APISIX-MCP_create_plugin_config | Create a new plugin config |
APISIX-MCP_get_resource | Get resource details by ID or list all resources |
APISIX-MCP_delete_resource | Delete a resource by ID |
APISIX-MCP_create_route | Create a route |
APISIX-MCP_update_route | Update specific attributes of an existing route |
APISIX-MCP_create_service | Create a service |
APISIX-MCP_update_service | Update specific attributes of an existing service |
APISIX-MCP_create_upstream | Create an upstream service with load balancing settings |
APISIX-MCP_update_upstream | Update specific attributes of an existing upstream |
APISIX-MCP_create_or_update_consumer | Create a consumer, if the consumer already exists, it will be updated |
APISIX-MCP_get_credential | Get all credentials or a specific credential for a consumer |
APISIX-MCP_create_or_update_credential | Create or update a credential for a consumer |
APISIX-MCP_delete_credential | Delete a credential for a consumer |
APISIX-MCP_create_ssl | Create an SSL certificate |
APISIX-MCP_update_ssl | Update specific attributes of an existing SSL certificate |
APISIX-MCP_create_global_rule | Create a global rule |
APISIX-MCP_update_global_rule | Update specific attributes of an existing global rule |
APISIX-MCP_create_consumer_group | Create a consumer group |
APISIX-MCP_update_consumer_group | Update specific attributes of an existing consumer group |
APISIX-MCP_get_all_plugin_names | Get all plugin names |
APISIX-MCP_get_plugin_schema | Get all plugins schema or a specific plugin schema by name |
APISIX-MCP_update_plugin_config | Update a plugin config |
APISIX-MCP_create_or_update_plugin_metadata | Create or update plugin metadata |
APISIX-MCP_delete_plugin_metadata | Delete plugin metadata |
APISIX-MCP_create_or_update_stream_route | Create a stream route, if the stream route already exists, it will be updated |
APISIX-MCP_get_secret_by_id | Get a secret by ID |
APISIX-MCP_create_secret | Create a secret |
APISIX-MCP_update_secret | Update specific attributes of an existing secret |
APISIX-MCP_delete_secret | Delete a secret by ID |
APISIX-MCP_create_or_update_proto | Create a proto, if the proto already exists, it will be updated |
pubmed-mcp-server_search_pubmed | |
CODING DevOps MCP Server_list_issues | IssueTypelimit20 |
CODING DevOps MCP Server_create_issue | - |
CODING DevOps MCP Server_delete_issue | - |
CODING DevOps MCP Server_delete_project | CODING DevOps |
CODING DevOps MCP Server_list_projects | CODING DevOps |
CODING DevOps MCP Server_create_project | CODING DevOps |
WireMCP_capture_packets | Capture live traffic and provide raw packet data as JSON for LLM analysis |
WireMCP_get_summary_stats | Capture live traffic and provide protocol hierarchy statistics for LLM analysis |
WireMCP_get_conversations | Capture live traffic and provide TCP/UDP conversation statistics for LLM analysis |
WireMCP_check_threats | Capture live traffic and check IPs against URLhaus blacklist |
WireMCP_check_ip_threats | Check a given IP address against URLhaus blacklist for IOCs |
WireMCP_analyze_pcap | Analyze a PCAP file and provide general packet data as JSON for LLM analysis |
WireMCP_extract_credentials | Extract potential credentials (HTTP Basic Auth, FTP, Telnet) from a PCAP file for LLM analysis |
Paddle MCP Server_list_products | This tool will list products in your Paddle catalog. Use the maximum perPage by default (200) to ensure comprehensive results. Filter products by status, tax category, and type as needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Include related entities like prices if needed. Amounts are in the smallest currency unit (e.g., cents). |
Paddle MCP Server_create_product | This tool will create a new product in Paddle. When selecting a tax category, choose the one that best describes your product:
The tax category affects how taxes are calculated in different jurisdictions. Choose carefully as it impacts your customers' tax rates. When using the standard tax category, prompt the user to review the tax category in the Paddle dashboard. |
Paddle MCP Server_list_prices | This tool will list prices in your Paddle catalog. Use the maximum perPage by default (200) to ensure comprehensive results. Filter prices by product ID, status, recurring, and type as needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Include related entities like products if needed. Amounts are in the smallest currency unit (e.g., cents). |
Paddle MCP Server_create_price | This tool will create a new price for a product in Paddle. When using unitPriceOverrides:
Example unitPriceOverrides structure: [ { "countryCodes": ["GB"], "unitPrice": { "amount": "8500", "currencyCode": "GBP" } }, { "countryCodes": ["IE"], "unitPrice": { "amount": "9500", "currencyCode": "EUR" } }, { "countryCodes": ["GR"], "unitPrice": { "amount": "6500", "currencyCode": "EUR" } }, { "countryCodes": ["IN"], "unitPrice": { "amount": "30000", "currencyCode": "INR" } }, { "countryCodes": ["CN"], "unitPrice": { "amount": "20000", "currencyCode": "CNY" } } ] |
Paddle MCP Server_list_customers | This tool will list customers in your Paddle account. Use the maximum perPage by default (200) to ensure comprehensive results. Filter customers by email, ID, and status as needed. Use the search parameter to find customers by ID, name, or email address. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Customers can have either 'active' or 'archived' status. |
Paddle MCP Server_list_transactions | This tool will list transactions from your Paddle account. Use the maximum perPage by default (30) to ensure comprehensive results. Filter transactions by billing and creation dates, collection mode, customer ID, invoice number, origin, status and subscription ID as required. You can include related information such as addresses, adjustments, adjustment totals, available payment methods, business details, customer data, and discounts when needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Amounts are in the smallest currency unit (e.g., cents). |
Paddle MCP Server_list_subscriptions | This tool will list subscriptions from your Paddle account. Use the maximum perPage by default (200) to ensure comprehensive results. Filter subscriptions by address ID, customer ID, price ID, collection mode, scheduled change action, and status as needed. Results are paginated - use the 'after' parameter with the last ID from previous results to get the next page. Sort results using orderBy parameter. Amounts are in the smallest currency unit (e.g., cents). |
Paddle MCP Server_create_report | This tool creates custom reports in your Paddle account for financial analysis and reconciliation. Use this tool over list_transactions when trying to gather larger amounts of data from Paddle. Available report types:
Reports are generated asynchronously - you'll receive a report ID that can be used to check status. Reports initially have 'pending' status, then move to 'ready' when available to download. Reports are available in CSV format and can be downloaded once ready. Reports expire after a certain period and are no longer available to download after expiration. Use this tool when you need detailed financial data for analysis, reconciliation, or export to spreadsheet applications. |
Revit MCP Server_create_levels | RevitJSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateLevels" params (List[Dict]): : - elevation (float): - name (str, optional): "Level_{elevation}" : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = create_levels(ctx, params=[ {"elevation": 8000, "name": "Level_3"}, {"elevation": 12000} # "Level_12000" ]) |
Revit MCP Server_create_floor_plan_views | JSON-RPC 2.0 mcp_toolparams :- - : ctx (Context): FastMCP method (str): JSON-RPC CreateFloorPlanViews params (List[Dict]): : - levelId (str): ElementId - viewName (str): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_floor_plan_views(ctx, params=[ {"levelId": "123456", "viewName": "Level 1 - Floor Plan"}, {"levelId": "789012", "viewName": "Level 2 - Floor Plan"} ]) |
Revit MCP Server_create_grids | RevitJSON-RPC 2.0 mcp_toolparams :- - - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateGrids" params (List[Dict]): : - startX (float): X - startY (float): Y - endX (float): X - endY (float): Y - name (str, optional): - centerX (float, optional): X - centerY (float, optional): Y : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = create_grids(ctx, params=[ { "name": "Grid_A", "startX": 0, "startY": 0, "endX": 10000, "endY": 0 }, { "name": "Grid_B", "startX": 5000, "startY": 0, "endX": 5000, "endY": 10000, "centerX": 5000, "centerY": 5000 } ]) |
Revit MCP Server_create_walls | RevitJSON-RPC 2.0 mcp_toolparams :- - - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateWalls" params (List[Dict]): : - startX (float): X - startY (float): Y - endX (float): X - endY (float): Y - height (float): - width (float): - elevation (float, optional): 0 : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_walls(ctx, params=[ {"startX": 0, "startY": 0, "endX": 5000, "endY": 0, "height": 3000, "width": 200}, {"startX": 5000, "startY": 0, "endX": 5000, "endY": 5000, "height": 3000, "width": 200, "elevation": 1000} ]) |
Revit MCP Server_create_floors | RevitJSON-RPC 2.0 mcp_toolparams :- - -
: ctx (Context): FastMCP method (str): JSON-RPC"CreateFloors" params (List[Dict]): : - boundaryPoints (List[Dict]): : - x (float): X - y (float): Y - z (float): Z - floorTypeName (str, optional): - structural (bool, optional): False : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = create_floors(ctx, params=[ { "boundaryPoints": [ {"x": 0, "y": 0, "z": 0}, {"x": 5000, "y": 0, "z": 0}, {"x": 5000, "y": 5000, "z": 0}, {"x": 0, "y": 5000, "z": 0}, {"x": 0, "y": 0, "z": 0} ], "floorTypeName": " - 150mm", "structural": True }, { "boundaryPoints": [ {"x": 0, "y": 0, "z": 3000}, {"x": 5000, "y": 0, "z": 3000}, {"x": 5000, "y": 5000, "z": 3000}, {"x": 0, "y": 5000, "z": 3000}, {"x": 0, "y": 0, "z": 3000} ], "floorTypeName": " - 200mm" } ]) |
Revit MCP Server_create_door_windows | RevitJSON-RPC 2.0 mcp_toolparams :- -
: ctx (Context): FastMCP method (str): JSON-RPC"CreateDoorWindows" params (List[Dict]): : - categoryName (str): - familyName (str): - name (str): - startX (float): X - startY (float): Y - startZ (float): Z - hostId (str): ElementId - offset (str, optional): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_door_windows(ctx, params=[ { "categoryName": "", "familyName": "", "name": "915 x 2134mm", "startX": 5000, "startY": 2500, "startZ": 0, "hostId": "123456", "offset": "0" }, { "categoryName": "", "familyName": "", "name": "0915 x 1220mm", "startX": 8000, "startY": 2500, "startZ": 1000, "hostId": "123456", "offset": "900" } ]) |
Revit MCP Server_create_rooms | JSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateRooms" params (List[Dict]): : - elementId (Union[int, str]): ID : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : -32600: -32602: -32603: -32700: : # response = create_rooms(ctx, params=[ {"elementId": 123456}, {"elementId": "789012"} ]) : 1. 2. 3. |
Revit MCP Server_create_room_tags | IDJSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateRoomTags" params (List[Dict]): : - elementId (Union[int, str]): ID : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = create_room_tags(ctx, params=[{"elementId": 123456}]) : 1. 2. 3. |
Revit MCP Server_create_family_instances | RevitJSON-RPC 2.0 mcp_toolparams :- - - - - - - - - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateFamilyInstances" params (List[Dict]): : - categoryName (str): BuiltInCategoryCategory.Name"OST_Walls","OST_Doors", "", "", "" - name (str): - startX (float): X - startY (float): Y - startZ (float): Z - familyName (str, optional): - endX (float, optional): XstartX - endY (float, optional): YstartY - endZ (float, optional): ZstartZ - hostId (str, optional): ID - viewName (str, optional): - rotationAngle (float, optional): 0 - offset (float, optional): 0 : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = create_family_instances(ctx, params=[ # { "categoryName": "", "name": "0406 x 0610mm", "startX": 1000, "startY": 2000, "startZ": 0, "hostId": 225535, "level": " 1", }, # { "categoryName": "OST_Furniture", "name": "", "startX": 3000, "startY": 4000, "startZ": 0, "viewName": " 1", "rotationAngle": 90 }, # { "categoryName": "OST_StructuralFraming", "name": "H", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000 } ]) |
Revit MCP Server_create_sheets | JSON-RPC 2.0 :- - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateSheets" params (List[Dict]): : - number (str): - name (str): - titleBlockType (str): - viewName (str, optional): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "/ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_sheets(ctx, params=[ { "number": "101", "name": "", "titleBlockType": "A0 ", "viewName": " 1" }, { "number": "102", "name": "", "titleBlockType": "A0 " } ]) |
Revit MCP Server_create_ducts | RevitJSON-RPC 2.0 mcp_toolparams :- - - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateDucts" params (List[Dict]): : - ductTypeName (str): - systemTypeName (str): - startX (float): X - startY (float): Y - startZ (float): Z - endX (float): X - endY (float): Y - endZ (float): Z - width (float): - height (float): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_ducts(ctx, params=[ { "ductTypeName": "", "systemTypeName": "", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000, "width": 300, "height": 200 }, { "ductTypeName": "", "systemTypeName": "", "startX": 5000, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 5000, "endZ": 3000, "width": 300, "height": 200 } ]) |
Revit MCP Server_create_pipes | RevitJSON-RPC 2.0 mcp_toolparams :- - - - : ctx (Context): FastMCP method (str): JSON-RPC"CreatePipes" params (List[Dict]): : - pipeTypeName (str): - systemTypeName (str): - startX (float): X - startY (float): Y - startZ (float): Z - endX (float): X - endY (float): Y - endZ (float): Z - diameter (float): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_pipes(ctx, params=[ { "pipeTypeName": "", "systemTypeName": "", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000, "diameter": 50 }, { "pipeTypeName": "", "systemTypeName": "", "startX": 5000, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 5000, "endZ": 3000, "diameter": 40 } ]) |
Revit MCP Server_create_cable_trays | RevitJSON-RPC 2.0 mcp_toolparams :- - - - : ctx (Context): FastMCP method (str): JSON-RPC"CreateCableTrays" params (List[Dict]): : - cableTrayTypeName (str): - startX (float): X - startY (float): Y - startZ (float): Z - endX (float): X - endY (float): Y - endZ (float): Z - width (float): - height (float): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = create_cable_trays(ctx, params=[ { "cableTrayTypeName": "", "startX": 0, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 0, "endZ": 3000, "width": 200, "height": 100 }, { "cableTrayTypeName": "", "startX": 5000, "startY": 0, "startZ": 3000, "endX": 5000, "endY": 5000, "endZ": 3000, "width": 200, "height": 100 } ]) |
Revit MCP Server_get_commands | JSON-RPC 2.0 mcp_toolparams :
: ctx (Context): FastMCP method (str): JSON-RPC"GetCommands" : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "name": "", "description": "", "tooltip": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = get_commands(ctx) |
Revit MCP Server_execute_commands | JSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"ExecuteCommands" params (List[Dict]): : - name (str): - add (bool): TrueFalse : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "name": "AI", "description": "DeepSeekRevit,", "tooltip": "(F1)" }, { "name": "AI", "description": "AIRevit,~", "tooltip": "(F1)" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = execute_command(ctx, params=[ {"name": "AI", "add": True}, {"name": "AI", "add": True} ]) |
Revit MCP Server_call_func | Revit JSON-RPC 2.0 :- - - : ctx (Context): FastMCP method (str): JSON-RPC"CallFunc" params (List[Dict]): : - name (str): - params (dict, optional): , : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = call_func(ctx, params=[ {"name": "ClearDuplicates"}, {"name": "DeleteZeroRooms"}, {"name": "DimensionViewPlanGrids"}, {"name": "", "params": {"offset": 3000}} ]) |
Revit MCP Server_find_elements | RevitJSON-RPC 2.0 mcp_toolparams :
: ctx (Context): FastMCP method (str): JSON-RPC"FindElements" params (List[Dict[str, Union[str, bool]]]): : - categoryName (str): BuiltInCategoryCategory.Name "OST_Walls","OST_Doors", "", "", "" - isInstance (bool): True,False : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": , "message": , "data": }, "id": request_id } : -32600: -32602: BuiltInCategoryCategory.Name -32603: -32700: : >>> response = find_elements(ctx, params=[ ... {"categoryName": "OST_Doors", "isInstance": False}, ... {"categoryName": "", "isInstance": True} ... ]) >>> print(response) { "jsonrpc": "2.0", "result": [ {"elementId": "123456", "name": "", "familyName": "M_"}, {"elementId": "789012", "name": "", "familyName": "M_"} ], "id": 1 } |
Revit MCP Server_update_elements | RevitJSON-RPC 2.0 mcp_toolparams :
: ctx (Context): FastMCP method (str): JSON-RPC"UpdateElements" params (List[Dict[str, Union[str, int]]]): : - elementId (Union[str, int]): ID - parameterName (str): - parameterValue (str): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": , "message": , "data": }, "id": request_id } : -32600 (Invalid Request): -32602 (Invalid Params): / -32603 (Internal Error): -32700 (Parse Error): : > # > response = update_elements(ctx, params=[ ... {"elementId": 123456, "parameterName": "Comments", "parameterValue": "Test"}, ... {"elementId": "789012", "parameterName": "Height", "parameterValue": "3000"} ... ]) > print(response) { "jsonrpc": "2.0", "result": [ {"elementId": "123456", "name": "", "familyName": ""}, {"elementId": "789012", "name": "", "familyName": "M_"} ], "id": 1 } : Revit |
Revit MCP Server_delete_elements | RevitJSON-RPC 2.0 mcp_toolparams :
: ctx (Context): FastMCP method (str): JSON-RPC"DeleteElements" params (List[Dict[str, Union[int, str]]]): : - elementId (Union[int, str]): ID : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : >>> # >>> response = delete_elements(ctx, params=[ ... {"elementId": 5943}, ... {"elementId": "5913"}, ... {"elementId": 212831} ... ]) >>> print(response) { "jsonrpc": "2.0", "result": [ {"elementId": "5943", "name": "Wall 1", "familyName": "Basic Wall"}, {"elementId": "5913", "name": "Door 1", "familyName": "Single-Flush"}, {"elementId": "212831", "name": "Window 1", "familyName": "Fixed"} ], "id": 1 } |
Revit MCP Server_parameter_elements | RevitJSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"ParameterElements" params (List[Dict]): : - elementId (Union[int, str]): ID - parameterName (str, optional): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": { "elementId1": [ { "hashCode": int, "parameterName": str, "parameterValue": str, } ], ... }, "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = parameter_elements(ctx, params=[ {"elementId": 212792, "parameterName": ""}, # {"elementId": 212781} # ]) |
Revit MCP Server_get_locations | RevitJSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"GetLocations" params (List[Dict]): : - elementId (Union[str, int]): ID,strId : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": { "elementId1": [ { "X": float, # X "Y": float, # Y "Z": float # Z }, ... ], ... }, "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : -32600: -32602: -32603: -32700: : # response = get_location(ctx, params=[ {"elementId": 123456}, {"elementId": "789012"} ]) |
Revit MCP Server_move_elements | RevitJSON-RPC 2.0 mcp_toolparams :
: ctx (Context): FastMCP method (str): JSON-RPC"MoveElements" params (List[Dict]): : - elementId (str): ID - x (float): X - y (float): Y - z (float): Z : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = move_elements(ctx, params=[ {"elementId": "123456", "x": 100, "y": 200, "z": 0}, {"elementId": "789012", "x": -50, "y": 0, "z": 300} ]) |
Revit MCP Server_show_elements | RevitJSON-RPC 2.0 mcp_toolparams :
: ctx (Context): FastMCP method (str): JSON-RPC"ShowElements" params (List[Dict[str, Union[int, str]]]): : - elementId (Union[int, str]): ID : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ID], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": , "message": , "data": }, "id": request_id } : -32600 (Invalid Request): -32602 (Invalid Params): ID -32603 (Internal Error): -32700 (Parse Error): : >>> # >>> response = show_elements(ctx, params=[ ... {"elementId": 212781}, ... {"elementId": "212792"} ... ]) >>> print(response) {"jsonrpc":"2.0","result":[212781,212792],"id":1} : : 1. 2. 3. |
Revit MCP Server_active_view | RevitJSON-RPC 2.0 mcp_toolparams :- - - : ctx (Context): FastMCP method (str): JSON-RPC"ActiveView" params (List[Dict]): : - elementId (Union[int, str]): ID : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : -32600: -32602: // -32603: -32700: : # response = active_view(ctx, params=[{"elementId": 123456}]) : 1. 2. ID 3. ID |
Revit MCP Server_get_selected_elements | Revit UIJSON-RPC 2.0 :
: ctx (Context): FastMCP method (str): JSON-RPC"GetSelectedElements" : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "elementId": "ID", "name": "", "familyName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : # response = get_selected_elements(ctx) |
Revit MCP Server_link_dwg_and_activate_view | DWG JSON-RPC 2.0 :
: ctx (Context): FastMCP method (str): JSON-RPC"LinkDWGAndActivateView" params (List[Dict]): : - filePath (str): DWG - viewName (str): : dict: JSON-RPC 2.0: : { "jsonrpc": "2.0", "result": [ { "filePath": "", "viewId": "ID", "viewName": "" }, ... ], "id": request_id } : { "jsonrpc": "2.0", "error": { "code": int, "message": str, "data": any }, "id": request_id } : response = link_and_activate_view(ctx, params=[ {"filePath": "C:\Projects\SampleDrawing.dwg", "viewName": "Level 1"} ]) |
Safe Local Python Executor/Interpreter_run_python | Execute Python code in a secure sandbox environment. |
mcp-my-apple-remembers_my_apple_recall_memory | Run Apple Script on a remote MacOs machine. This call should be used to recall the apple notes, apple calendar, imessages, chat messages, files, context or any other information of a MacOs machine can have access to. |
mcp-my-apple-remembers_my_apple_save_memory | Run Apple Script on a remote MacOs machine. This call should be used to save relevant information to the apple notes. You decide what information to save. You should always add a new notes with a timestamp as the title. |
PCM_cache-stats | Get CCXT cache statistics |
PCM_clear-cache | Clear CCXT cache |
PCM_set-log-level | Set logging level |
PCM_list-exchanges | List all available cryptocurrency exchanges |
PCM_get-ticker | Get current ticker information for a trading pair |
PCM_batch-get-tickers | Get ticker information for multiple trading pairs at once |
PCM_get-orderbook | Get market order book for a trading pair |
PCM_get-ohlcv | Get OHLCV candlestick data for a trading pair |
PCM_get-trades | Get recent trades for a trading pair |
PCM_get-markets | Get all available markets for an exchange |
PCM_get-exchange-info | Get exchange information and status |
PCM_get-leverage-tiers | Get futures leverage tiers for trading pairs |
PCM_get-funding-rates | Get current funding rates for perpetual contracts |
PCM_get-market-types | Get market types supported by an exchange |
PCM_account-balance | Get your account balance from a crypto exchange |
PCM_place-market-order | Place a market order on an exchange |
PCM_set-leverage | Set leverage for futures trading |
PCM_set-margin-mode | Set margin mode for futures trading |
PCM_place-futures-market-order | Place a futures market order |
PCM_get-proxy-config | Get the current proxy configuration |
PCM_set-proxy-config | Configure proxy settings for all exchanges |
PCM_test-proxy-connection | Test the proxy connection with a specified exchange |
PCM_clear-exchange-cache | Clear exchange instance cache to apply configuration changes |
PCM_set-market-type | Set default market type for all exchanges |
MasterGo Magic MCP_mcp__getDsl | "Use this tool to retrieve the DSL (Domain Specific Language) data from MasterGo design files and the rules you must follow when generating code. This tool is useful when you need to analyze the structure of a design, understand component hierarchy, or extract design properties. You must provide a fileId and layerId to identify the specific design element. This tool returns the raw DSL data in JSON format that you can then parse and analyze. This tool also returns the rules you must follow when generating code. The DSL data can also be used to transform and generate code for different frameworks." |
MasterGo Magic MCP_mcp__getComponentLink | When the data returned by mcp__getDsl contains a non-empty componentDocumentLinks array, this tool is used to sequentially retrieve URLs from the componentDocumentLinks array and then obtain component documentation data. The returned document data is used for you to generate frontend code based on components. |
Xero MCP Server_list-contacts | List all contacts in Xero. This includes Suppliers and Customers. |
Xero MCP Server_update-contact | Update a contact in Xero. |
Xero MCP Server_create-quote | Create a quote in Xero. |
Xero MCP Server_list-invoices | List invoices in Xero. This includes Draft, Submitted, and Paid invoices. Ask the user if they want to see invoices for a specific contact, invoice number, or to see all invoices before running. Ask the user if they want the next page of invoices after running this tool if 10 invoices are returned. If they want the next page, call this tool again with the next page number and the contact or invoice number if one was provided in the previous call. |
Xero MCP Server_create-contact | Create a contact in Xero. |
Xero MCP Server_create-invoice | Create an invoice in Xero. |
Xero MCP Server_list-accounts | Lists all accounts in Xero. Use this tool to get the account codes and names to be used when creating invoices in Xero |
Xero MCP Server_list-tax-rates | Lists all tax rates in Xero. Use this tool to get the tax rates to be used when creating invoices in Xero |
Xero MCP Server_list-quotes | List all quotes in Xero. Ask the user if they want to see quotes for a specific contact before running. Ask the user if they want the next page of quotes after running this tool if 10 quotes are returned. If they do, call this tool again with the page number and the contact provided in the previous call. |
Xero MCP Server_update-invoice | Update an invoice in Xero. Only works on draft invoices. |
Xero MCP Server_list-credit-notes | List credit notes in Xero. Ask the user if they want to see credit notes for a specific contact, or to see all credit notes before running. Ask the user if they want the next page of credit notes after running this tool if 10 credit notes are returned. If they want the next page, call this tool again with the next page number and the contact if one was provided in the previous call. |
Xero MCP Server_create-credit-note | Create a credit note in Xero. |
Gmail MCP_list_forwarding_addresses | Lists the forwarding addresses for the specified account |
Gmail MCP_delete_send_as | Deletes the specified send-as alias |
Gmail MCP_remove_delegate | Removes the specified delegate |
Gmail MCP_get_send_as | Gets the specified send-as alias |
Gmail MCP_list_send_as | Lists the send-as aliases for the specified account |
Gmail MCP_get_delegate | Gets the specified delegate |
Gmail MCP_list_delegates | Lists the delegates for the specified account |
Gmail MCP_create_send_as | Creates a custom send-as alias |
Gmail MCP_update_pop | Updates POP settings |
Gmail MCP_get_thread | Get a specific thread by ID |
Gmail MCP_create_draft | Create a draft email in Gmail. Note the mechanics of the raw parameter. |
Gmail MCP_delete_draft | Delete a draft |
Gmail MCP_get_draft | Get a specific draft by ID |
Gmail MCP_list_drafts | List drafts in the user's mailbox |
Gmail MCP_send_draft | Send an existing draft |
Gmail MCP_update_draft | Replace a draft's content. Note the mechanics of the threadId and raw parameters. |
Gmail MCP_create_label | Create a new label |
Gmail MCP_delete_label | Delete a label |
Gmail MCP_get_label | Get a specific label by ID |
Gmail MCP_list_labels | List all labels in the user's mailbox |
Gmail MCP_patch_label | Patch an existing label (partial update) |
Gmail MCP_delete_forwarding_address | Deletes the specified forwarding address |
Gmail MCP_update_label | Update an existing label |
Gmail MCP_batch_delete_messages | Delete multiple messages |
Gmail MCP_batch_modify_messages | Modify the labels on multiple messages |
Gmail MCP_delete_message | Immediately and permanently delete a message |
Gmail MCP_get_message | Get a specific message by ID with format options |
Gmail MCP_list_messages | List messages in the user's mailbox with optional filtering |
Gmail MCP_modify_message | Modify the labels on a message |
Gmail MCP_update_vacation | Update vacation responder settings |
Gmail MCP_send_message | Send an email message to specified recipients. Note the mechanics of the raw parameter. |
Gmail MCP_trash_message | Move a message to the trash |
Gmail MCP_untrash_message | Remove a message from the trash |
Gmail MCP_get_attachment | Get a message attachment |
Gmail MCP_delete_thread | Delete a thread |
Gmail MCP_get_forwarding_address | Gets the specified forwarding address |
Gmail MCP_list_threads | List threads in the user's mailbox |
Gmail MCP_modify_thread | Modify the labels applied to a thread |
Gmail MCP_trash_thread | Move a thread to the trash |
Gmail MCP_untrash_thread | Remove a thread from the trash |
Gmail MCP_get_auto_forwarding | Gets auto-forwarding settings |
Gmail MCP_get_imap | Gets IMAP settings |
Gmail MCP_get_language | Gets language settings |
Gmail MCP_get_pop | Gets POP settings |
Gmail MCP_get_vacation | Get vacation responder settings |
Gmail MCP_update_auto_forwarding | Updates automatic forwarding settings |
Gmail MCP_update_imap | Updates IMAP settings |
Gmail MCP_update_language | Updates language settings |
Gmail MCP_add_delegate | Adds a delegate to the specified account |
Gmail MCP_create_filter | Creates a filter |
Gmail MCP_delete_filter | Deletes a filter |
Gmail MCP_get_filter | Gets a filter |
Gmail MCP_list_filters | Lists the message filters of a Gmail user |
Gmail MCP_create_forwarding_address | Creates a forwarding address |
Gmail MCP_patch_send_as | Patches the specified send-as alias |
Gmail MCP_update_send_as | Updates a send-as alias |
Gmail MCP_verify_send_as | Sends a verification email to the specified send-as alias |
Gmail MCP_delete_smime_info | Deletes the specified S/MIME config for the specified send-as alias |
Gmail MCP_get_smime_info | Gets the specified S/MIME config for the specified send-as alias |
Gmail MCP_insert_smime_info | Insert (upload) the given S/MIME config for the specified send-as alias |
Gmail MCP_list_smime_info | Lists S/MIME configs for the specified send-as alias |
Gmail MCP_set_default_smime_info | Sets the default S/MIME config for the specified send-as alias |
Gmail MCP_get_profile | Get the current user's Gmail profile |
Gmail MCP_watch_mailbox | Watch for changes to the user's mailbox |
Gmail MCP_stop_mail_watch | Stop receiving push notifications for the given user mailbox |
MCP Minecraft Remote_getPosition | Get the current position of the player in the Minecraft world |
MCP Minecraft Remote_moveTo | Move the player to a specific location |
MCP Minecraft Remote_connectToServer | Connect to a Minecraft server with the specified credentials |
MCP Minecraft Remote_disconnectFromServer | Disconnect from the Minecraft server |
MCP Minecraft Remote_sendChat | Send a chat message to the Minecraft server |
MCP Minecraft Remote_moveControl | Control the player with basic movement commands |
MCP Minecraft Remote_lookAt | Make the player look in a specific direction or at coordinates |
MCP Minecraft Remote_digBlock | Dig a block at the specified coordinates |
MCP Minecraft Remote_placeBlock | Place a block at the specified location |
MCP Minecraft Remote_getNearbyPlayers | Get a list of players nearby |
MCP Minecraft Remote_getServerInfo | Get information about the currently connected server |
MCP Minecraft Remote_checkInventory | Check the items in the player inventory |
MCP Minecraft Remote_equipItem | Equip an item from inventory to hand or armor slot |
MCP Minecraft Remote_inventoryDetails | Get detailed information about inventory items |
MCP Minecraft Remote_tossItem | Throw items from inventory |
MCP Minecraft Remote_getNearbyEntities | Get a list of all entities nearby |
MCP Minecraft Remote_attackEntity | Attack a specific entity |
MCP Minecraft Remote_useOnEntity | Use held item on a specific entity |
MCP Minecraft Remote_followEntity | Follow a specific entity |
MCP Minecraft Remote_openContainer | Open a container (chest, furnace, etc.) at specific coordinates |
MCP Minecraft Remote_withdrawItem | Take items from an open container |
MCP Minecraft Remote_depositItem | Put items into an open container |
MCP Minecraft Remote_closeContainer | Close the currently open container |
MCP Minecraft Remote_getRecipes | Get a list of available crafting recipes |
MCP Minecraft Remote_craftItem | Craft an item using available materials |
MCP Minecraft Remote_listTrades | List available trades from a nearby villager |
MCP Minecraft Remote_tradeWithVillager | Trade with a nearby villager |
MCP Agile Flow_get_project_settings | |
MCP Agile Flow_think | |
MCP Agile Flow_get_thoughts | |
MCP Agile Flow_clear_thoughts | |
MCP Agile Flow_get_thought_stats | |
MCP Agile Flow_detect_thinking_directive | |
MCP Agile Flow_should_think | |
MCP Agile Flow_think_more | |
MCP Agile Flow_initialize_ide | |
MCP Agile Flow_initialize_ide_rules | |
MCP Agile Flow_prime_context | |
MCP Agile Flow_migrate_mcp_config | |
MCP Agile Flow_process_natural_language | |
Hevy MCP_get-workouts | Get a paginated list of workouts. Returns workout details including title, description, start/end times, and exercises performed. Results are ordered from newest to oldest. |
Hevy MCP_get-workout | Get complete details of a specific workout by ID. Returns all workout information including title, description, start/end times, and detailed exercise data. |
Hevy MCP_get-workout-count | Get the total number of workouts on the account. Useful for pagination or statistics. |
Hevy MCP_get-workout-events | Retrieve a paged list of workout events (updates or deletes) since a given date. Events are ordered from newest to oldest. The intention is to allow clients to keep their local cache of workouts up to date without having to fetch the entire list of workouts. |
Hevy MCP_create-workout | Create a new workout in your Hevy account. Requires title, start/end times, and at least one exercise with sets. Returns the complete workout details upon successful creation including the newly assigned workout ID. |
Hevy MCP_update-workout | Update an existing workout by ID. You can modify the title, description, start/end times, privacy setting, and exercise data. Returns the updated workout with all changes applied. |
Hevy MCP_get-routines | Get a paginated list of routines. Returns routine details including title, creation date, folder assignment, and exercise configurations. Results include both default and custom routines. |
Hevy MCP_get-routine | Get complete details of a specific routine by ID. Returns all routine information including title, notes, assigned folder, and detailed exercise data with set configurations. |
Hevy MCP_create-routine | Create a new workout routine in your Hevy account. Requires title and at least one exercise with sets. Optionally assign to a specific folder. Returns the complete routine details upon successful creation including the newly assigned routine ID. |
Hevy MCP_update-routine | Update an existing workout routine by ID. You can modify the title, notes, and exercise data. Returns the updated routine with all changes applied. Note that you cannot change the folder assignment through this method. |
Hevy MCP_get-exercise-templates | Get a paginated list of exercise templates available on the account. Returns both default and custom exercise templates with details including title, type, primary muscle group, and secondary muscle groups. Supports up to 100 templates per page. |
Hevy MCP_get-exercise-template | Get complete details of a specific exercise template by ID. Returns all template information including title, type, primary muscle group, secondary muscle groups, and whether it's a custom exercise. |
Hevy MCP_get-routine-folders | Get a paginated list of routine folders available on the account. Returns folder details including ID, title, index (order position), and creation/update timestamps. Useful for organizing routines into categories. |
Hevy MCP_get-routine-folder | Get complete details of a specific routine folder by ID. Returns all folder information including title, index (order position), and creation/update timestamps. |
Hevy MCP_create-routine-folder | Create a new routine folder in your Hevy account. The folder will be created at index 0, and all other folders will have their indexes incremented. Returns the complete folder details upon successful creation including the newly assigned folder ID. |
DataWorks MCP Server_UpdateWorkflowDefinition | - |
DataWorks MCP Server_ListProjectRoles | - |
DataWorks MCP Server_UpdateFunction | - |
DataWorks MCP Server_UpdateTaskInstances | - |
DataWorks MCP Server_ResumeTaskInstances | - |
DataWorks MCP Server_ListDataQualityRules | - |
DataWorks MCP Server_ListDeployments | - |
DataWorks MCP Server_BatchUpdateTasks | *ToolMCP ResourceBatchUpdateTasks(MCP Resource)Tool |
DataWorks MCP Server_DeleteDataQualityEvaluationTask | - |
DataWorks MCP Server_StopTaskInstances | - |
DataWorks MCP Server_ListDataSourceSharedRules | - |
DataWorks MCP Server_DeleteResource | - |
DataWorks MCP Server_ListDIJobMetrics | - |
DataWorks MCP Server_ListUpstreamTaskInstances | - |
DataWorks MCP Server_ListDIJobs | - |
DataWorks MCP Server_ListUpstreamTasks | - |
DataWorks MCP Server_GetTaskInstance | - |
DataWorks MCP Server_MoveResource | - |
DataWorks MCP Server_UpdateDataQualityRule | - |
DataWorks MCP Server_ListDataSources | - |
DataWorks MCP Server_DeleteDataQualityRule | - |
DataWorks MCP Server_RerunTaskInstances | - |
DataWorks MCP Server_UpdateAlertRule | *ToolMCP ResourceUpdateAlertRule(MCP Resource)Tool |
DataWorks MCP Server_CreateDataQualityRule | *ToolMCP ResourceCreateDataQualityRule(MCP Resource)Tool |
DataWorks MCP Server_ListDIJobEvents | - |
DataWorks MCP Server_ListTaskInstanceOperationLogs | - |
DataWorks MCP Server_ListWorkflows | - |
DataWorks MCP Server_GetNetwork | - |
DataWorks MCP Server_RevokeMemberProjectRoles | - |
DataWorks MCP Server_ListTaskInstances | - |
DataWorks MCP Server_ImportWorkflowDefinition | - |
DataWorks MCP Server_DeleteDIAlarmRule | - |
DataWorks MCP Server_GetTask | - |
DataWorks MCP Server_MoveNode | - |
DataWorks MCP Server_GetDataQualityEvaluationTask | - |
DataWorks MCP Server_DeleteWorkflowDefinition | - |
DataWorks MCP Server_ExecDeploymentStage | - |
DataWorks MCP Server_CreateDIAlarmRule | *ToolMCP ResourceCreateDIAlarmRule(MCP Resource)Tool |
DataWorks MCP Server_DeleteNode | - |
DataWorks MCP Server_TestDataSourceConnectivity | - |
DataWorks MCP Server_DeleteProjectMember | - |
DataWorks MCP Server_GetProjectMember | - |
DataWorks MCP Server_ListNetworks | - |
DataWorks MCP Server_CreateDataSource | - |
DataWorks MCP Server_RemoveTaskInstanceDependencies | - |
DataWorks MCP Server_GetDIJob | - |
DataWorks MCP Server_ListAlertRules | - |
DataWorks MCP Server_GetWorkflow | - |
DataWorks MCP Server_CreateDeployment | - |
DataWorks MCP Server_GetFunction | - |
DataWorks MCP Server_GetTaskInstanceLog | - |
DataWorks MCP Server_GetDIJobLog | - |
DataWorks MCP Server_SuspendTaskInstances | - |
DataWorks MCP Server_RenameResource | - |
DataWorks MCP Server_GrantMemberProjectRoles | - |
DataWorks MCP Server_GetResourceGroup | ID |
DataWorks MCP Server_CreateNode | *ToolMCP ResourceCreateNode(MCP Resource)Tool |
DataWorks MCP Server_CreateDataQualityEvaluationTaskInstance | - |
DataWorks MCP Server_UpdateWorkflow | *ToolMCP ResourceUpdateWorkflow(MCP Resource)Tool |
DataWorks MCP Server_DeleteDataSource | - |
DataWorks MCP Server_StopWorkflowInstances | - |
DataWorks MCP Server_RenameFunction | - |
DataWorks MCP Server_MoveWorkflowDefinition | - |
DataWorks MCP Server_GetDataQualityRule | - |
DataWorks MCP Server_StartDIJob | - |
DataWorks MCP Server_CreateWorkflowInstances | *ToolMCP ResourceCreateWorkflowInstances(MCP Resource)Tool |
DataWorks MCP Server_DeleteWorkflow | - |
DataWorks MCP Server_RenameNode | - |
DataWorks MCP Server_CreateResource | - |
DataWorks MCP Server_ListWorkflowDefinitions | - |
DataWorks MCP Server_UpdateDIJob | *ToolMCP ResourceUpdateDIJob(MCP Resource)Tool |
DataWorks MCP Server_ExecuteAdhocWorkflowInstance | *ToolMCP ResourceExecuteAdhocWorkflowInstance(MCP Resource)Tool |
DataWorks MCP Server_ListDataAssetTags | - |
DataWorks MCP Server_ListDataQualityRuleTemplates | - |
DataWorks MCP Server_GetWorkflowInstance | - |
DataWorks MCP Server_AttachDataQualityRulesToEvaluationTask | - |
DataWorks MCP Server_GetCreateWorkflowInstancesResult | - |
DataWorks MCP Server_UpdateNode | - |
DataWorks MCP Server_UpdateResource | - |
DataWorks MCP Server_GetAlertRule | - |
DataWorks MCP Server_ListRoutes | - |
DataWorks MCP Server_GetDataQualityEvaluationTaskInstance | - |
DataWorks MCP Server_StopDIJob | - |
DataWorks MCP Server_ListDataQualityEvaluationTasks | - |
DataWorks MCP Server_ListTaskOperationLogs | - |
DataWorks MCP Server_ListProjectMembers | - |
DataWorks MCP Server_ListDownstreamTaskInstances | - |
DataWorks MCP Server_GetRoute | ID |
DataWorks MCP Server_UpdateDataSource | - |
DataWorks MCP Server_UpdateDIAlarmRule | *ToolMCP ResourceUpdateDIAlarmRule(MCP Resource)Tool |
DataWorks MCP Server_GetJobStatus | API |
DataWorks MCP Server_SetSuccessTaskInstances | - |
DataWorks MCP Server_ListDataAssets | - |
DataWorks MCP Server_GetDataQualityRuleTemplate | - |
DataWorks MCP Server_DeleteFunction | - |
DataWorks MCP Server_ListProjects | - |
DataWorks MCP Server_CloneDataSource | - |
DataWorks MCP Server_StartWorkflowInstances | - |
DataWorks MCP Server_TriggerSchedulerTaskInstance | - |
DataWorks MCP Server_GetProject | - |
DataWorks MCP Server_CreateAlertRule | *ToolMCP ResourceCreateAlertRule(MCP Resource)Tool |
DataWorks MCP Server_GetDeployment | - |
DataWorks MCP Server_GetNode | - |
DataWorks MCP Server_GetDataSource | - |
DataWorks MCP Server_DeleteTask | - |
DataWorks MCP Server_DeleteDIJob | - |
DataWorks MCP Server_GetResource | - |
DataWorks MCP Server_CreateProjectMember | - |
DataWorks MCP Server_CreateDataQualityEvaluationTask | *ToolMCP ResourceCreateDataQualityEvaluationTask(MCP Resource)Tool |
DataWorks MCP Server_UpdateDataQualityEvaluationTask | *ToolMCP ResourceUpdateDataQualityEvaluationTask(MCP Resource)Tool |
DataWorks MCP Server_ListWorkflowInstances | - |
DataWorks MCP Server_ListDownstreamTasks | - |
DataWorks MCP Server_CreateFunction | - |
DataWorks MCP Server_CreateWorkflowDefinition | - |
DataWorks MCP Server_ListNodes | - |
DataWorks MCP Server_MoveFunction | - |
DataWorks MCP Server_ListTasks | - |
DataWorks MCP Server_ListResources | - |
DataWorks MCP Server_ListDataQualityResults | - |
DataWorks MCP Server_ListDIAlarmRules | - |
DataWorks MCP Server_DeleteAlertRule | - |
DataWorks MCP Server_AbolishDeployment | - |
DataWorks MCP Server_ListNodeDependencies | - |
DataWorks MCP Server_GetWorkflowDefinition | - |
DataWorks MCP Server_ListDIJobRunDetails | - |
DataWorks MCP Server_CreateDIJob | *ToolMCP ResourceCreateDIJob(MCP Resource)Tool |
DataWorks MCP Server_RenameWorkflowDefinition | - |
DataWorks MCP Server_GetProjectRole | - |
DataWorks MCP Server_ListResourceGroups | - |
DataWorks MCP Server_UpdateTask | *ToolMCP ResourceUpdateTask(MCP Resource)Tool |
DataWorks MCP Server_ListFunctions | - |
DataWorks MCP Server_ListDataQualityEvaluationTaskInstances | - |
DataWorks MCP Server_GetMetaTableOutput | - |
DataWorks MCP Server_GetMetaTableChangeLog | - |
DataWorks MCP Server_GetRemind | - |
DataWorks MCP Server_GetTopic | - |
DataWorks MCP Server_ListTables | - |
DataWorks MCP Server_GetTopicInfluence | - |
DataWorks MCP Server_SaveDataServiceApiTestResult | API |
DataWorks MCP Server_GetMetaTablePartition | - |
DataWorks MCP Server_GetAlertMessage | - |
DataWorks MCP Server_SearchMetaTables | - |
DataWorks MCP Server_ListDataServiceApis | API |
DataWorks MCP Server_ListAlertMessages | - |
DataWorks MCP Server_GetDataServiceApiTest | API |
DataWorks MCP Server_GetMetaTableIntroWiki | - |
DataWorks MCP Server_ListLineage | - |
DataWorks MCP Server_CreateDISyncTask | - |
DataWorks MCP Server_GetDataServiceApi | API |
DataWorks MCP Server_GetMetaDBTableList | - |
DataWorks MCP Server_DeleteDataServiceApi | API |
DataWorks MCP Server_CreateDataServiceApi | API |
DataWorks MCP Server_ConvertTimestamps | Tool |
DataWorks MCP Server_ToTimestamps | - |
DataWorks MCP Server_TestDataServiceApi | API |
DataWorks MCP Server_GetDataServicePublishedApi | API |
DataWorks MCP Server_CreatePermissionApplyOrder | *ToolMCP ResourceCreatePermissionApplyOrder(MCP Resource)Tool |
DataWorks MCP Server_ListTopics | - |
DataWorks MCP Server_AbolishDataServiceApi | API |
DataWorks MCP Server_ListPermissionApplyOrders | - |
DataWorks MCP Server_RevokeTablePermission | - |
DataWorks MCP Server_ApprovePermissionApplyOrder | - |
DataWorks MCP Server_SubmitDataServiceApi | API |
DataWorks MCP Server_ListDataServicePublishedApis | API |
DataWorks MCP Server_GetPermissionApplyOrderDetail | - |
DataWorks MCP Server_UpdateDataServiceApi | API |
DataWorks MCP Server_PublishDataServiceApi | API |
DataWorks MCP Server_GetMetaTableBasicInfo | - |
DataWorks MCP Server_GetMetaTableColumn | - |
Anki MCP Server_get-cards-reviewed | Get the number of cards reviewed by day |
Anki MCP Server_find-notes | Find notes matching a query in Anki |
Anki MCP Server_get-collection-overview | Get comprehensive information about the Anki collection including decks, models, and fields |
Anki MCP Server_add-or-update-notes | Add new notes or update existing ones in Anki |
IDA Pro MCP_declare_c_type | Create or update a local type from a C declaration |
IDA Pro MCP_set_local_variable_type | Set a local variable's type |
IDA Pro MCP_check_connection | Check if the IDA plugin is running |
IDA Pro MCP_get_metadata | Get metadata about the current IDB |
IDA Pro MCP_get_function_by_name | Get a function by its name |
IDA Pro MCP_get_function_by_address | Get a function by its address |
IDA Pro MCP_get_current_address | Get the address currently selected by the user |
IDA Pro MCP_get_current_function | Get the function currently selected by the user |
IDA Pro MCP_convert_number | Convert a number (decimal, hexadecimal) to different representations |
IDA Pro MCP_list_functions | List all functions in the database (paginated) |
IDA Pro MCP_list_strings | List all strings in the database (paginated) |
IDA Pro MCP_search_strings | Search for strings containing the given pattern (case-insensitive) |
IDA Pro MCP_decompile_function | Decompile a function at the given address |
IDA Pro MCP_disassemble_function | Get assembly code (address: instruction; comment) for a function |
IDA Pro MCP_get_xrefs_to | Get all cross references to the given address |
IDA Pro MCP_get_entry_points | Get all entry points in the database |
IDA Pro MCP_set_comment | Set a comment for a given address in the function disassembly and pseudocode |
IDA Pro MCP_rename_local_variable | Rename a local variable in a function |
IDA Pro MCP_rename_global_variable | Rename a global variable |
IDA Pro MCP_set_global_variable_type | Set a global variable's type |
IDA Pro MCP_rename_function | Rename a function |
IDA Pro MCP_set_function_prototype | Set a function's prototype |
MCP SNS Server_list_proposals | List all proposals |
MCP SNS Server_list_votable_neurons | List all votable neurons |
MCP Think Tool Server_think | Use this tool to think about something. It will not obtain new information or change anything, but just append the thought to the log. Use it when complex reasoning or cache memory is needed. |
MCP Think Tool Server_get_thoughts | Retrieve all thoughts recorded in the current session. This tool helps review the thinking process that has occurred so far. |
MCP Think Tool Server_clear_thoughts | Clear all recorded thoughts from the current session. Use this to start fresh if the thinking process needs to be reset. |
Elasticsearch MCP Server_list_indices | List all available Elasticsearch indices |
Elasticsearch MCP Server_get_mappings | Get field mappings for a specific Elasticsearch index |
Elasticsearch MCP Server_search | Perform an Elasticsearch search with the provided query DSL. Highlights are always enabled. |
MCP-Devin_get_devin_session | Get information about an existing Devin session and optionally fetch associated Slack messages |
MCP-Devin_list_devin_sessions | List all Devin sessions |
MCP-Devin_create_devin_session | Create a new Devin session for code development and post the task to Slack. Note: This is the recommended approach as it will automatically post your task to Slack as @Devin mention. Please craft your request to Devin in the same language that the user is using to communicate with you, maintaining language consistency throughout the experience. |
MCP-Devin_send_message_to_session | Send a message to an existing Devin session and optionally to the associated Slack thread |
MCP-Devin_get_organization_info | Get information about the current Devin organization |
Reddit MCP_get_submission | |
Reddit MCP_get_subreddit | |
Reddit MCP_get_comments_by_submission | |
Reddit MCP_get_comment_by_id | |
Reddit MCP_search_posts | |
Reddit MCP_search_subreddits | |
MCP Server Trello_get_cards_by_list_id | Fetch cards from a specific Trello list |
MCP Server Trello_get_lists | Retrieve all lists from the specified board |
MCP Server Trello_get_recent_activity | Fetch recent activity on the Trello board |
MCP Server Trello_add_card_to_list | Add a new card to a specified list |
MCP Server Trello_update_card_details | Update an existing card's details |
MCP Server Trello_archive_card | Send a card to the archive |
MCP Server Trello_add_list_to_board | Add a new list to the board |
MCP Server Trello_archive_list | Send a list to the archive |
MCP Server Trello_get_my_cards | Fetch all cards assigned to the current user |
MCP Sequential Thinking Tools_sequentialthinking_tools | A detailed tool for dynamic and reflective problem-solving through thoughts. This tool helps analyze problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding deepens. IMPORTANT: When initializing this tool, you must pass all available tools that you want the sequential thinking process to be able to use. The tool will analyze these tools and provide recommendations for their use. When to use this tool:
Key features:
Parameters explained:
You should:
|
OceanBase MCP Server_execute_sql | Execute an SQL query on the OceanBase server |
Texas Holdem MCP Server_login | login and list all tables in the poker game |
Texas Holdem MCP Server_join_table | Join a poker table |
Texas Holdem MCP Server_get_table_status | Get the current status of a poker table |
Texas Holdem MCP Server_leave_table | Leave a poker table |
Texas Holdem MCP Server_action_check | do action check |
Texas Holdem MCP Server_action_fold | do action fold |
Texas Holdem MCP Server_action_bet | do action bet |
Texas Holdem MCP Server_action_raise | do action raise |
Texas Holdem MCP Server_action_call | do action call |
Terrakube MCP Server_list-variables | Lists all variables in the specified workspace |
Terrakube MCP Server_list-organizations | Lists all organizations accessible to the current user |
Terrakube MCP Server_get-organization | Retrieves detailed information about a specific organization by its ID |
Terrakube MCP Server_create-organization | Creates a new organization with the specified name and optional description |
Terrakube MCP Server_edit-organization | Updates an existing organization's details |
Terrakube MCP Server_list-workspaces | Lists all workspaces in the specified organization |
Terrakube MCP Server_get-workspace | Retrieves detailed information about a specific workspace |
Terrakube MCP Server_create-workspace | Creates a new workspace in the specified organization |
Terrakube MCP Server_edit-workspace | Updates an existing workspace's details |
Terrakube MCP Server_list-modules | Lists all modules in the specified organization |
Terrakube MCP Server_get-module | Retrieves detailed information about a specific module |
Terrakube MCP Server_create-module | Creates a new module in the specified organization |
Terrakube MCP Server_edit-module | Updates an existing module's details |
Terrakube MCP Server_get-variable | Retrieves detailed information about a specific variable |
Terrakube MCP Server_create-variable | Creates a new variable in the specified workspace |
Terrakube MCP Server_edit-variable | Updates an existing variable's details |
Taiga MCP Bridge_login | Logs into a Taiga instance using username/password and returns a session_id for subsequent authenticated calls. |
Taiga MCP Bridge_list_projects | Lists projects accessible to the user associated with the provided session_id. |
Taiga MCP Bridge_list_all_projects | Lists all projects visible to the user (requires admin privileges for full list). Uses the provided session_id. |
Taiga MCP Bridge_get_project | Gets detailed information about a specific project by its ID. |
Taiga MCP Bridge_get_project_by_slug | Gets detailed information about a specific project by its slug. |
Taiga MCP Bridge_update_project | Updates details of an existing project. |
Taiga MCP Bridge_delete_project | Deletes a project by its ID. This is irreversible. |
Taiga MCP Bridge_get_project_roles | Lists the available roles within a specific project. |
Taiga MCP Bridge_list_user_stories | Lists user stories within a specific project, optionally filtered. |
Taiga MCP Bridge_create_user_story | Creates a new user story within a project. |
Taiga MCP Bridge_get_user_story | Gets detailed information about a specific user story by its ID. |
Taiga MCP Bridge_get_user_story_by_ref | Gets detailed information about a specific user story by its reference number within a project. |
Taiga MCP Bridge_update_user_story | Updates details of an existing user story. |
Taiga MCP Bridge_delete_user_story | Deletes a user story by its ID. |
Taiga MCP Bridge_assign_user_story_to_user | Assigns a specific user story to a specific user. |
Taiga MCP Bridge_unassign_user_story_from_user | Unassigns a specific user story (sets assigned user to null). |
Taiga MCP Bridge_get_user_story_statuses | Lists the available statuses for user stories within a specific project. |
Taiga MCP Bridge_list_tasks | Lists tasks within a specific project, optionally filtered. |
Taiga MCP Bridge_create_task | Creates a new task within a project. |
Taiga MCP Bridge_get_task | Gets detailed information about a specific task by its ID. |
Taiga MCP Bridge_get_task_by_ref | Gets detailed information about a specific task by its reference number within a project. |
Taiga MCP Bridge_update_task | Updates details of an existing task. |
Taiga MCP Bridge_delete_task | Deletes a task by its ID. |
Taiga MCP Bridge_assign_task_to_user | Assigns a specific task to a specific user. |
Taiga MCP Bridge_unassign_task_from_user | Unassigns a specific task (sets assigned user to null). |
Taiga MCP Bridge_get_task_statuses | Lists the available statuses for tasks within a specific project. |
Taiga MCP Bridge_list_issues | Lists issues within a specific project, optionally filtered. |
Taiga MCP Bridge_create_issue | Creates a new issue within a project. |
Taiga MCP Bridge_get_issue | Gets detailed information about a specific issue by its ID. |
Taiga MCP Bridge_get_issue_by_ref | Gets detailed information about a specific issue by its reference number within a project. |
Taiga MCP Bridge_update_issue | Updates details of an existing issue. |
Taiga MCP Bridge_delete_issue | Deletes an issue by its ID. |
Taiga MCP Bridge_get_project_members | Lists members of a specific project. |
Taiga MCP Bridge_assign_issue_to_user | Assigns a specific issue to a specific user. |
Taiga MCP Bridge_unassign_issue_from_user | Unassigns a specific issue (sets assigned user to null). |
Taiga MCP Bridge_get_issue_statuses | Lists the available statuses for issues within a specific project. |
Taiga MCP Bridge_get_issue_priorities | Lists the available priorities for issues within a specific project. |
Taiga MCP Bridge_get_issue_severities | Lists the available severities for issues within a specific project. |
Taiga MCP Bridge_get_issue_types | Lists the available types for issues within a specific project. |
Taiga MCP Bridge_list_epics | Lists epics within a specific project, optionally filtered. |
Taiga MCP Bridge_create_epic | Creates a new epic within a project. |
Taiga MCP Bridge_get_epic | Gets detailed information about a specific epic by its ID. |
Taiga MCP Bridge_get_epic_by_ref | Gets detailed information about a specific epic by its reference number within a project. |
Taiga MCP Bridge_update_epic | Updates details of an existing epic. |
Taiga MCP Bridge_delete_epic | Deletes an epic by its ID. |
Taiga MCP Bridge_assign_epic_to_user | Assigns a specific epic to a specific user. |
Taiga MCP Bridge_unassign_epic_from_user | Unassigns a specific epic (sets assigned user to null). |
Taiga MCP Bridge_get_epic_statuses | Lists the available statuses for epics within a specific project. |
Taiga MCP Bridge_list_milestones | Lists milestones (sprints) within a specific project. |
Taiga MCP Bridge_create_milestone | Creates a new milestone (sprint) within a project. |
Taiga MCP Bridge_get_milestone | Gets detailed information about a specific milestone by its ID. |
Taiga MCP Bridge_update_milestone | Updates details of an existing milestone. |
Taiga MCP Bridge_delete_milestone | Deletes a milestone by its ID. |
Taiga MCP Bridge_get_milestone_stats | Gets statistics (total points, completed points, etc.) for a specific milestone. |
Taiga MCP Bridge_invite_project_user | Invites a user to a project by email with a specific role. |
Taiga MCP Bridge_list_wiki_pages | Lists wiki pages within a specific project. |
Taiga MCP Bridge_get_wiki_page | Gets a specific wiki page by its ID. |
Taiga MCP Bridge_get_wiki_page_by_slug | Gets a specific wiki page by its slug within a project. |
Taiga MCP Bridge_logout | Invalidates the current session_id. |
Taiga MCP Bridge_session_status | Checks if the provided session_id is currently active and valid. |
HubSpot MCP Server_hubspot_create_contact | Create a new contact in HubSpot |
HubSpot MCP Server_hubspot_create_company | Create a new company in HubSpot |
HubSpot MCP Server_hubspot_get_company_activity | Get activity history for a specific company |
HubSpot MCP Server_hubspot_get_recent_engagements | Get recent engagement activities across all contacts and companies |
HubSpot MCP Server_hubspot_get_active_companies | Get most recently active companies from HubSpot |
HubSpot MCP Server_hubspot_get_active_contacts | Get most recently active contacts from HubSpot |
HubSpot MCP Server_create_shared_summary | Create a new conversation summary in the shared space |
HubSpot MCP Server_get_shared_summaries | Retrieve all conversation summaries for the company |
EdgeOne Pages MCP_deploy-html | Deploy HTML content to EdgeOne Pages, return the public URL |
Figma MCP Server with Chunking_get_components | Get components from a Figma file |
Figma MCP Server with Chunking_get_styles | Get styles from a Figma file |
Figma MCP Server with Chunking_get_file_versions | Get version history of a Figma file |
Figma MCP Server with Chunking_get_file_comments | Get comments on a Figma file |
Figma MCP Server with Chunking_get_file_data | Get Figma file data with chunking and pagination |
Figma MCP Server with Chunking_list_files | List files in a project or team |
Figma MCP Server with Chunking_get_file_nodes | Get specific nodes from a Figma file |
PowerPoint MCP Server_open-presentation | Opens an existing presentation and saves a copy to a new file for backup. Use this tool when the user requests to open a presentation that has already been created. |
PowerPoint MCP Server_save-presentation | Save the presentation to a file. Always use this tool at the end of any process that has added slides to a presentation. |
PowerPoint MCP Server_add-slide-title-content | Add a new slide with a title and content to an existing presentation |
PowerPoint MCP Server_create-presentation | This tool starts the process of generating a new powerpoint presentation with the name given by the user. Use this tool when the user requests to create or generate a new presentation. |
PowerPoint MCP Server_generate-and-save-image | Generates an image using a FLUX model and save the image to the specified path. The tool will return a PNG file path. It should be used when the user asks to generate or create an image or a picture. |
PowerPoint MCP Server_add-slide-title-only | This tool adds a new title slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on. |
PowerPoint MCP Server_add-slide-section-header | This tool adds a section header (a.k.a segue) slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on. |
PowerPoint MCP Server_add-slide-comparison | Add a new a comparison slide with title and comparison content. Use when you wish to compare two concepts |
PowerPoint MCP Server_add-slide-title-with-table | Add a new slide with a title and table containing the provided data |
PowerPoint MCP Server_add-slide-title-with-chart | Add a new slide with a title and chart. The chart type will be automatically selected based on the data structure. |
PowerPoint MCP Server_add-slide-picture-with-caption | Add a new slide with a picture and caption to an existing presentation |
Atlassian Bitbucket MCP Server_list-workspaces | List Bitbucket workspaces available to your account. PURPOSE: Discovers workspaces you have access to with their slugs, names, and permission levels to help navigate Bitbucket's organization structure. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Formatted list of workspaces with slugs, names, and permission information, plus pagination details if available. EXAMPLES:
ERRORS:
|
Atlassian Bitbucket MCP Server_get-workspace | Get detailed information about a specific Bitbucket workspace by slug. PURPOSE: Retrieves comprehensive workspace metadata including projects, permissions, and configuration. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Detailed workspace information including slug, name, type, description, projects, and permission levels. EXAMPLES:
ERRORS:
|
Atlassian Bitbucket MCP Server_list-repositories | List Bitbucket repositories within a specific workspace. PURPOSE: Discovers repositories in a workspace with their slugs, names, and URLs to help navigate code resources. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Formatted list of repositories with slugs, names, descriptions, URLs, and metadata, plus pagination info. EXAMPLES:
ERRORS:
|
Atlassian Bitbucket MCP Server_get-repository | Get detailed information about a specific Bitbucket repository. PURPOSE: Retrieves comprehensive repository metadata including branches, settings, permissions, and more. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Detailed repository information including slug, name, description, URLs, branch information, and settings. EXAMPLES:
ERRORS:
|
Atlassian Bitbucket MCP Server_list-pull-requests | List Bitbucket pull requests with optional filtering capabilities. PURPOSE: Allows you to find and browse pull requests across repositories with filtering options. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Formatted list of pull requests with IDs, titles, states, authors, branch information, and URLs, plus pagination info. EXAMPLES:
ERRORS:
|
Atlassian Bitbucket MCP Server_get-pull-request | Get detailed information about a specific Bitbucket pull request. PURPOSE: Retrieves comprehensive PR data including description, comments, diff stats, reviewers, and branch information. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Detailed PR information including title, description, status, author, reviewers, branches, comments, and related timestamps. EXAMPLES:
ERRORS:
|
Base Network MCP Server_process_command | Process a natural language command for Base network operations |
Base Network MCP Server_create_wallet | Create a new wallet |
Base Network MCP Server_check_balance | Check wallet balance |
Base Network MCP Server_list_wallets | List all available wallets |
GitLab MCP Server_gitlab_list_group_members | List members of a group |
GitLab MCP Server_gitlab_list_users | List GitLab users |
GitLab MCP Server_gitlab_get_user | Get details of a specific user |
GitLab MCP Server_gitlab_list_groups | List GitLab groups |
GitLab MCP Server_gitlab_get_cicd_variable | Get a specific CI/CD variable |
GitLab MCP Server_gitlab_list_projects | List GitLab projects accessible to the user |
GitLab MCP Server_gitlab_get_project | Get details of a specific GitLab project |
GitLab MCP Server_gitlab_list_branches | List branches of a GitLab project |
GitLab MCP Server_gitlab_list_merge_requests | List merge requests in a GitLab project |
GitLab MCP Server_gitlab_get_merge_request | Get details of a specific merge request |
GitLab MCP Server_gitlab_get_merge_request_changes | Get changes (diff) of a specific merge request |
GitLab MCP Server_gitlab_create_merge_request_note | Add a comment to a merge request |
GitLab MCP Server_gitlab_create_merge_request_note_internal | Add a comment to a merge request with option to make it an internal note |
GitLab MCP Server_gitlab_update_merge_request | Update a merge request title and description |
GitLab MCP Server_gitlab_list_issues | List issues in a GitLab project |
GitLab MCP Server_gitlab_get_repository_file | Get content of a file in a repository |
GitLab MCP Server_gitlab_compare_branches | Compare branches, tags or commits |
GitLab MCP Server_gitlab_list_integrations | List all available project integrations/services |
GitLab MCP Server_gitlab_get_integration | Get integration details for a project |
GitLab MCP Server_gitlab_update_slack_integration | Update Slack integration settings for a project |
GitLab MCP Server_gitlab_disable_slack_integration | Disable Slack integration for a project |
GitLab MCP Server_gitlab_list_webhooks | List webhooks for a project |
GitLab MCP Server_gitlab_get_webhook | Get details of a specific webhook |
GitLab MCP Server_gitlab_add_webhook | Add a new webhook to a project |
GitLab MCP Server_gitlab_update_webhook | Update an existing webhook |
GitLab MCP Server_gitlab_delete_webhook | Delete a webhook |
GitLab MCP Server_gitlab_test_webhook | Test a webhook |
GitLab MCP Server_gitlab_list_trigger_tokens | List pipeline trigger tokens |
GitLab MCP Server_gitlab_get_trigger_token | Get details of a pipeline trigger token |
GitLab MCP Server_gitlab_create_trigger_token | Create a new pipeline trigger token |
GitLab MCP Server_gitlab_update_trigger_token | Update a pipeline trigger token |
GitLab MCP Server_gitlab_delete_trigger_token | Delete a pipeline trigger token |
GitLab MCP Server_gitlab_trigger_pipeline | Trigger a pipeline run |
GitLab MCP Server_gitlab_list_cicd_variables | List CI/CD variables for a project |
GitLab MCP Server_gitlab_create_cicd_variable | Create a new CI/CD variable |
GitLab MCP Server_gitlab_update_cicd_variable | Update a CI/CD variable |
GitLab MCP Server_gitlab_delete_cicd_variable | Delete a CI/CD variable |
GitLab MCP Server_gitlab_get_group | Get details of a specific group |
GitLab MCP Server_gitlab_add_group_member | Add a user to a group |
GitLab MCP Server_gitlab_list_project_members | List members of a project |
GitLab MCP Server_gitlab_add_project_member | Add a user to a project |
MRP Calculator MCP Server_calculate_order_need | Calculate MRP order need based on forecast, inventory, and delivery schedule |
Notes MCP Server_add-note | Add a new note |
ServiceNow MCP Server_update_catalog_item | Update a service catalog item. |
ServiceNow MCP Server_create_incident | Create a new incident in ServiceNow |
ServiceNow MCP Server_update_incident | Update an existing incident in ServiceNow |
ServiceNow MCP Server_add_comment | Add a comment to an incident in ServiceNow |
ServiceNow MCP Server_resolve_incident | Resolve an incident in ServiceNow |
ServiceNow MCP Server_list_incidents | List incidents from ServiceNow |
ServiceNow MCP Server_list_catalog_items | List service catalog items. |
ServiceNow MCP Server_get_catalog_item | Get a specific service catalog item. |
ServiceNow MCP Server_list_catalog_categories | List service catalog categories. |
ServiceNow MCP Server_create_catalog_category | Create a new service catalog category. |
ServiceNow MCP Server_update_catalog_category | Update an existing service catalog category. |
ServiceNow MCP Server_move_catalog_items | Move catalog items to a different category. |
ServiceNow MCP Server_get_optimization_recommendations | Get optimization recommendations for the service catalog. |
ServiceNow MCP Server_create_change_request | Create a new change request in ServiceNow |
ServiceNow MCP Server_update_change_request | Update an existing change request in ServiceNow |
ServiceNow MCP Server_list_change_requests | List change requests from ServiceNow |
ServiceNow MCP Server_get_change_request_details | Get detailed information about a specific change request |
ServiceNow MCP Server_add_change_task | Add a task to a change request |
ServiceNow MCP Server_delete_script_include | - |
ServiceNow MCP Server_submit_change_for_approval | Submit a change request for approval |
ServiceNow MCP Server_approve_change | Approve a change request |
ServiceNow MCP Server_reject_change | Reject a change request |
ServiceNow MCP Server_list_workflows | List workflows from ServiceNow |
ServiceNow MCP Server_get_workflow_details | Get detailed information about a specific workflow |
ServiceNow MCP Server_list_workflow_versions | List workflow versions from ServiceNow |
ServiceNow MCP Server_get_workflow_activities | Get activities for a specific workflow |
ServiceNow MCP Server_create_workflow | Create a new workflow in ServiceNow |
ServiceNow MCP Server_create_changeset | Create a new changeset in ServiceNow |
ServiceNow MCP Server_update_workflow | Update an existing workflow in ServiceNow |
ServiceNow MCP Server_activate_workflow | Activate a workflow in ServiceNow |
ServiceNow MCP Server_deactivate_workflow | Deactivate a workflow in ServiceNow |
ServiceNow MCP Server_add_workflow_activity | Add a new activity to a workflow in ServiceNow |
ServiceNow MCP Server_update_workflow_activity | Update an existing activity in a workflow |
ServiceNow MCP Server_delete_workflow_activity | Delete an activity from a workflow |
ServiceNow MCP Server_reorder_workflow_activities | Reorder activities in a workflow |
ServiceNow MCP Server_list_changesets | List changesets from ServiceNow |
ServiceNow MCP Server_get_changeset_details | Get detailed information about a specific changeset |
ServiceNow MCP Server_update_changeset | Update an existing changeset in ServiceNow |
ServiceNow MCP Server_commit_changeset | Commit a changeset in ServiceNow |
ServiceNow MCP Server_publish_changeset | Publish a changeset in ServiceNow |
ServiceNow MCP Server_remove_group_members | - |
ServiceNow MCP Server_add_file_to_changeset | Add a file to a changeset in ServiceNow |
ServiceNow MCP Server_list_script_includes | List script includes from ServiceNow |
ServiceNow MCP Server_get_script_include | Get a specific script include from ServiceNow |
ServiceNow MCP Server_create_script_include | Create a new script include in ServiceNow |
ServiceNow MCP Server_update_script_include | Update an existing script include in ServiceNow |
ServiceNow MCP Server_create_knowledge_base | Create a new knowledge base in ServiceNow |
ServiceNow MCP Server_list_knowledge_bases | List knowledge bases from ServiceNow |
ServiceNow MCP Server_create_category | Create a new category in a knowledge base |
ServiceNow MCP Server_create_article | Create a new knowledge article |
ServiceNow MCP Server_update_article | Update an existing knowledge article |
ServiceNow MCP Server_publish_article | Publish a knowledge article |
ServiceNow MCP Server_list_articles | List knowledge articles |
ServiceNow MCP Server_get_article | Get a specific knowledge article by ID |
ServiceNow MCP Server_list_categories | List categories in a knowledge base |
ServiceNow MCP Server_create_user | - |
ServiceNow MCP Server_update_user | - |
ServiceNow MCP Server_get_user | - |
ServiceNow MCP Server_list_users | - |
ServiceNow MCP Server_create_group | - |
ServiceNow MCP Server_update_group | - |
ServiceNow MCP Server_add_group_members | - |
FirstCycling MCP Server_get_rider_year_results | Retrieve detailed results for a professional cyclist for a specific year. This tool provides comprehensive information about a rider's performance in all races during a given calendar year. It includes positions achieved, race categories, dates, and additional details. |
FirstCycling MCP Server_get_rider_victories | Get a comprehensive list of a rider's UCI victories. This tool retrieves detailed information about all UCI-registered race victories achieved by the cyclist throughout their career. Victories can be filtered to show only WorldTour wins if desired. |
FirstCycling MCP Server_get_rider_teams | Get a detailed history of a professional cyclist's team affiliations throughout their career. This tool provides a chronological list of all teams the rider has been part of, including years and team details. |
FirstCycling MCP Server_search_rider | Search for professional cyclists by name. This tool helps find riders by their name, returning a list of matching riders with their IDs and basic information. This is useful when you need a rider's ID for other operations but only know their name. |
FirstCycling MCP Server_get_rider_info | Get comprehensive information about a professional cyclist including their current team, nationality, date of birth, and recent race results. This tool provides a detailed overview of a rider's current status and recent performance in professional cycling races. The information includes their current team affiliation, nationality, age, and their most recent race results with positions and times. |
FirstCycling MCP Server_get_rider_best_results | Retrieve the best career results of a professional cyclist, including their top finishes in various races. This tool provides a comprehensive overview of a rider's most significant achievements throughout their career, including their highest positions in major races, stage wins, and overall classifications. Results are sorted by importance and include detailed information about each race. |
FirstCycling MCP Server_get_rider_grand_tour_results | Get comprehensive results for a rider in Grand Tours (Tour de France, Giro d'Italia, and Vuelta a Espaa). This tool provides detailed information about a rider's performance in cycling's most prestigious three-week races, including their overall classification positions, stage wins, and special classification results. The data is organized chronologically and includes all relevant race details. |
FirstCycling MCP Server_get_rider_monument_results | Retrieve detailed results for a rider in cycling's five Monument races (Milan-San Remo, Tour of Flanders, Paris-Roubaix, Lige-Bastogne-Lige, and Il Lombardia). These are the most prestigious one-day races in professional cycling. The tool provides comprehensive information about a rider's performance in these historic races, including their positions, times, and any special achievements. |
FirstCycling MCP Server_get_rider_team_and_ranking | Get information about a professional cyclist's team affiliations and UCI rankings throughout their career. This tool retrieves the rider's team history and their UCI ranking points over time. It provides a comprehensive overview of their professional career progression through different teams and their performance in the UCI rankings. |
FirstCycling MCP Server_get_rider_race_history | Get the complete race history of a professional cyclist, optionally filtered by year. This tool retrieves a comprehensive list of all races the rider has participated in, including their positions, times, and race categories. It provides a detailed overview of their racing career. |
FirstCycling MCP Server_search_race | Search for cycling races by name. This tool helps find races by their name, returning a list of matching races with their IDs and countries. This is useful when you know a race's name but need its ID for other operations. |
FirstCycling MCP Server_get_rider_one_day_races | Get a rider's results in one-day races, optionally filtered by year. This tool retrieves detailed information about a rider's performance in one-day races (classics and one-day events). It provides comprehensive data about positions, times, and race categories. Results can be filtered by a specific year. |
FirstCycling MCP Server_get_rider_stage_races | Get a rider's results in stage races, optionally filtered by year. This tool retrieves detailed information about a rider's performance in stage races (multi-day races like Tour de France, Giro d'Italia, etc.). It provides comprehensive data about positions, times, and race categories. Results can be filtered by a specific year. |
FirstCycling MCP Server_get_race_details | Get comprehensive details about a cycling race. This tool provides detailed information about a specific race, including its history, key statistics, route details, and other relevant information. The data can be filtered by specific classification. |
FirstCycling MCP Server_get_race_edition_results | Get detailed results for a specific edition of a cycling race. This tool provides comprehensive results for a particular edition of a race, including rankings, time gaps, and other relevant statistics. Results can be filtered by classification or stage. |
FirstCycling MCP Server_get_start_list | Get the start list for a specific edition of a cycling race. The start list includes rider numbers, names, and teams. |
FirstCycling MCP Server_get_race_victory_table | Get the all-time victory table for a cycling race. This tool provides a historical summary of the most successful riders in a specific race, showing the number of victories for each rider throughout the race's history. |
FirstCycling MCP Server_get_uci_rankings | Get UCI rankings for riders, teams, or nations. This tool provides access to the UCI ranking data for professional cyclists, teams, or nations. Results can be filtered by ranking type, year, and category. |
Poke-MCP_random-pokemon | Get a random Pokmon |
Poke-MCP_random-pokemon-from-region | Get a random Pokmon from a specific region |
Poke-MCP_random-pokemon-by-type | Get a random Pokmon of a specific type |
Poke-MCP_pokemon-query | Answer natural language Pokmon queries |
file-finder-mcp_search-files | |
Salesforce MCP Server_salesforce_search_objects | Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc. |
Salesforce MCP Server_salesforce_describe_object | Get detailed schema metadata including all fields, relationships, and field properties of any Salesforce object. Examples: 'Account' shows all Account fields including custom fields; 'Case' shows all Case fields including relationships to Account, Contact etc. |
Salesforce MCP Server_salesforce_query_records | Query records from any Salesforce object using SOQL, including relationship queries. Examples:
Note: When using relationship fields:
|
Salesforce MCP Server_salesforce_dml_records | Perform data manipulation operations on Salesforce records:
|
Salesforce MCP Server_salesforce_manage_object | Create new custom objects or modify existing ones in Salesforce:
|
Salesforce MCP Server_salesforce_manage_field | Create new custom fields or modify existing fields on any Salesforce object:
|
Salesforce MCP Server_salesforce_search_all | Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language). Examples:
Notes:
|
Salesforce MCP Server_salesforce_upload_report_xml | Upload XML to generate or update reports in Salesforce. Examples:
Note: XML must follow Salesforce report metadata format. For custom report types, ensure the report type exists in your org before uploading. |
FLUX Image Generator MCP Server_generateImage | Generate an image using Black Forest Lab's FLUX model based on a text prompt |
FLUX Image Generator MCP Server_quickImage | Quickly generate an image based on a text prompt with default settings |
FLUX Image Generator MCP Server_batchGenerateImages | Generate multiple images from a list of prompts |
Deepseek-Thinking-Claude-3.5-Sonnet-CLINE-MCP_generate_response | Generate a response using DeepSeek's reasoning and Claude's response generation through OpenRouter. |
Deepseek-Thinking-Claude-3.5-Sonnet-CLINE-MCP_check_response_status | Check the status of a response generation task |
DroidMind_list_packages | List installed packages on the device. Args: serial: Device serial number include_system_apps: Whether to include system apps in the list Returns: Formatted list of installed packages |
DroidMind_device_properties | Get detailed properties of a specific device. Args: serial: Device serial number Returns: Formatted device properties as text |
DroidMind_install_app | Install an APK on the device. Args: serial: Device serial number apk_path: Path to the APK file (local to the server) reinstall: Whether to reinstall if app exists grant_permissions: Whether to grant all requested permissions Returns: Installation result message |
DroidMind_uninstall_app | Uninstall an app from the device. Args: serial: Device serial number package: Package name to uninstall keep_data: Whether to keep app data and cache directories Returns: Uninstallation result message |
DroidMind_start_app | Start an app on the device. Args: serial: Device serial number package: Package name to start activity: Optional activity name to start (if empty, launches the default activity) Returns: Result message |
DroidMind_stop_app | Force stop an app on the device. Args: serial: Device serial number package: Package name to stop Returns: Result message |
DroidMind_clear_app_data | Clear app data and cache for the specified package. Args: serial: Device serial number package: Package name to clear data for Returns: Result message |
DroidMind_device_logcat | Get recent logcat output from a device. Args: serial: Device serial number lines: Number of recent lines to fetch (default: 1000, max recommended: 20000) Higher values may impact performance and context window limits. filter_expr: Optional filter expression (e.g., "ActivityManager *") Use to focus on specific tags or priority levels max_size: Maximum output size in characters (default: 100000) Set to None for unlimited (not recommended) Returns: Recent logcat entries |
DroidMind_devicelist | List all connected Android devices. Returns: A formatted list of connected devices with their basic information. |
DroidMind_connect_device | Connect to an Android device over TCP/IP. Args: ip_address: The IP address of the device to connect to port: The port to connect to (default: 5555) Returns: A message indicating success or failure |
DroidMind_disconnect_device | Disconnect from an Android device. Args: serial: Device serial number Returns: Disconnection result message |
DroidMind_reboot_device | Reboot the device. Args: serial: Device serial number mode: Reboot mode - "normal", "recovery", or "bootloader" Returns: Reboot result message |
DroidMind_capture_bugreport | Capture a bug report from a device. Bug reports are comprehensive diagnostic information packages that include system logs, device state, running processes, and more. Args: serial: Device serial number ctx: MCP context output_path: Where to save the bug report (leave empty to return as text) include_screenshots: Whether to include screenshots in the report timeout_seconds: Maximum time to wait for the bug report to complete (in seconds) Returns: Path to the saved bug report or a summary of the report contents |
DroidMind_dump_heap | Capture a heap dump from a running process on the device. Heap dumps are useful for diagnosing memory issues, leaks, and understanding object relationships in running applications. Args: serial: Device serial number ctx: MCP context package_or_pid: App package name or process ID to dump output_path: Where to save the heap dump (leave empty for default location) native: Whether to capture a native heap dump (vs Java heap) timeout_seconds: Maximum time to wait for the heap dump to complete (in seconds) Returns: Path to the saved heap dump or an error message |
DroidMind_list_directory | List contents of a directory on the device. Args: serial: Device serial number path: Directory path to list Returns: Directory listing |
DroidMind_push_file | Upload a file to the device. Args: serial: Device serial number local_path: Path to the local file device_path: Destination path on the device Returns: Upload result message |
DroidMind_pull_file | Download a file from the device to the local machine. Args: serial: Device serial number device_path: Path to the file on the device local_path: Destination path on the local machine Returns: Download result message |
DroidMind_delete_file | Delete a file or directory from the device. Args: serial: Device serial number path: Path to the file or directory to delete Returns: Deletion result message |
DroidMind_create_directory | Create a directory on the device. Args: serial: Device serial number path: Path to the directory to create Returns: Result message |
DroidMind_file_exists | Check if a file exists on the device. Args: serial: Device serial number path: Path to the file on the device Returns: True if the file exists, False otherwise |
DroidMind_read_file | Read the contents of a file on the device. Args: serial: Device serial number device_path: Path to the file on device max_size: Maximum file size to read in bytes (default: 100KB) Files larger than this will return an error message instead Returns: File contents as text or error message |
DroidMind_write_file | Write text content to a file on the device. Args: serial: Device serial number device_path: Path to the file on device content: Text content to write to the file Returns: Writing result message |
DroidMind_screenshot | Get a screenshot from a device. Args: serial: Device serial number ctx: MCP context quality: JPEG quality (1-100, lower means smaller file size) Returns: The device screenshot as an image |
DroidMind_shell_command | Run a shell command on the device. Args: serial: Device serial number command: Shell command to run max_lines: Maximum lines of output to return (default: 1000) Use positive numbers for first N lines, negative for last N lines Set to None for unlimited (not recommended for large outputs) max_size: Maximum output size in characters (default: 100000) Limits total response size regardless of line count Returns: Command output |
DroidMind_tap | Tap on the device screen at specific coordinates. Args: serial: Device serial number x: X coordinate to tap y: Y coordinate to tap Returns: The result of the tap operation |
DroidMind_swipe | Perform a swipe gesture from one point to another on the device screen. Args: serial: Device serial number start_x: Starting X coordinate start_y: Starting Y coordinate end_x: Ending X coordinate end_y: Ending Y coordinate ctx: Context duration_ms: Duration of the swipe in milliseconds (default: 300) Returns: The result of the swipe operation |
DroidMind_input_text | Input text on the device. Args: serial: Device serial number text: Text to input (will be typed as if from keyboard) Returns: The result of the text input operation |
DroidMind_press_key | Press a key on the device. Common keycodes:
Args: serial: Device serial number keycode: Android keycode to press Returns: The result of the key press operation |
DroidMind_start_intent | Start an app activity using an intent. Args: serial: Device serial number package: Package name (e.g., "com.android.settings") activity: Activity name (e.g., ".Settings") ctx: Context extras: Optional intent extras as key-value pairs Returns: The result of the intent operation |
Twosplit MCP Server_twosplit | Get multiple AI perspectives and combine them into the best response |
MCP Server for continue.dev_web_search | - |
MCP Server for continue.dev_perplexity_summary_search | - |
SimpleLocalize MCP Server_create_translation_keys | Create translation keys in bulk for a project. This endpoint allows you to create multiple translation keys at once. You can create up to 100 translation keys in a single request. Each key must have a 'key' field, and optionally can include 'namespace' and 'description' fields. Args: keys: List of dictionaries containing key information with fields: - key (required): Translation key (max 500 chars) - namespace (optional): Namespace for the key (max 64 chars) - description (optional): Description for translators (max 500 chars) |
SimpleLocalize MCP Server_update_translations | Update translations in bulk with a single request. This endpoint allows you to update multiple translations at once. You can update up to 100 translations in a single request. Each translation must specify the key, language, and text. Namespace is optional. Args: translations: List of dictionaries containing translation information with fields: - key (required): Translation key - language (required): Language code - text (required): Translation text (max 65535 chars) - namespace (optional): Namespace for the key |
Office Word MCP Server_create_document | Create a new Word document with optional metadata. |
Office Word MCP Server_add_heading | Add a heading to a Word document. |
Office Word MCP Server_add_paragraph | Add a paragraph to a Word document. |
Office Word MCP Server_add_table | Add a table to a Word document. |
Office Word MCP Server_add_picture | Add an image to a Word document. |
Office Word MCP Server_get_document_info | Get information about a Word document. |
Office Word MCP Server_get_document_text | Extract all text from a Word document. |
Office Word MCP Server_get_document_outline | Get the structure of a Word document. |
Office Word MCP Server_list_available_documents | List all .docx files in the specified directory. |
Office Word MCP Server_copy_document | Create a copy of a Word document. |
Office Word MCP Server_format_text | Format a specific range of text within a paragraph. |
Office Word MCP Server_search_and_replace | Search for text and replace all occurrences. |
Office Word MCP Server_delete_paragraph | Delete a paragraph from a document. |
Office Word MCP Server_create_custom_style | Create a custom style in the document. |
Office Word MCP Server_format_table | Format a table with borders, shading, and structure. |
Office Word MCP Server_add_page_break | Add a page break to the document. |
TeamRetro MCP Server_list_teams | List teams from TeamRetro with filtering and pagination |
TeamRetro MCP Server_detail_team | Get a single team by ID |
TeamRetro MCP Server_update_team | Update an existing team |
TeamRetro MCP Server_create_team | Create a new team with optional members and tags |
TeamRetro MCP Server_delete_team | Delete an existing team |
TeamRetro MCP Server_list_users | List users with pagination |
TeamRetro MCP Server_add_user | Add or update a user by email |
TeamRetro MCP Server_update_user | Update an existing user's information |
TeamRetro MCP Server_delete_user | Delete a user by email |
TeamRetro MCP Server_get_user | Get a single user by email |
TeamRetro MCP Server_list_team_members | List team members with pagination |
Airbnb MCP Server_airbnb_search | Search for Airbnb listings with various filters and pagination. Provide direct links to the user |
Airbnb MCP Server_airbnb_listing_details | Get detailed information about a specific Airbnb listing. Provide direct links to the user |
MCP Sui Tools_faucet | Get faucet from sui networks |
MCP Sui Tools_balance | Get balance of an address from sui networks |
MCP Sui Tools_sui-transfer | transfer SUI(in mist) to single or multiple addresses |
IDA Pro MCP Server_run_ida_command | Execute an IDA Pro Script (IdaPython, Version IDA 8.3) |
IDA Pro MCP Server_search_immediate_value | Search for immediate values in the binary |
IDA Pro MCP Server_search_text | Search for text in the binary |
IDA Pro MCP Server_search_byte_sequence | Search for a byte sequence in the binary |
IDA Pro MCP Server_get_disassembly | Get disassembly for an address range |
IDA Pro MCP Server_get_functions | Get list of functions from the binary |
IDA Pro MCP Server_get_exports | Get list of exports from the binary |
IDA Pro MCP Server_get_strings | Get list of strings from the binary |
eClass MCP Server_login | Log in to eClass using username/password from your .env file through UoA's SSO. Configure ECLASS_USERNAME and ECLASS_PASSWORD in your .env file. |
eClass MCP Server_get_courses | Get list of enrolled courses from eClass |
eClass MCP Server_logout | Log out from eClass |
eClass MCP Server_authstatus | Check authentication status with eClass |
Image Generation MCP Server_generate_image | Generate an image using Stable Diffusion |
Image Generation MCP Server_get_sd_models | Get list of available Stable Diffusion models |
Image Generation MCP Server_set_sd_model | Set the active Stable Diffusion model |
Image Generation MCP Server_get_sd_upscalers | Get list of available upscaler models |
Image Generation MCP Server_upscale_images | Upscale one or more images using Stable Diffusion |
Audio Transcriber MCP Server_transcribe_audio | Transcribe an audio file using OpenAI Whisper API |
MCP Crypto Wallet EVM_provider_lookup_address | Lookup the ENS name for an address |
MCP Crypto Wallet EVM_provider_resolve_name | Resolve an ENS name to an address |
MCP Crypto Wallet EVM_network_get_network | Get the current network information |
MCP Crypto Wallet EVM_network_get_block_number | Get the current block number |
MCP Crypto Wallet EVM_network_get_fee_data | Get the current fee data (base fee, max priority fee, etc.) |
MCP Crypto Wallet EVM_wallet_get_balance | Get the balance of the wallet |
MCP Crypto Wallet EVM_wallet_get_chain_id | Get the chain ID the wallet is connected to |
MCP Crypto Wallet EVM_wallet_get_gas_price | Get the current gas price |
MCP Crypto Wallet EVM_wallet_provider_set | Set the provider URL. By default, the provider URL is set to the ETH mainnet or the URL set in the PROVIDER_URL environment variable. |
MCP Crypto Wallet EVM_wallet_create_random | Create a new wallet with a random private key |
MCP Crypto Wallet EVM_wallet_from_private_key | Create a wallet from a private key |
MCP Crypto Wallet EVM_wallet_create_mnemonic_phrase | Create a mnemonic phrase |
MCP Crypto Wallet EVM_wallet_from_mnemonic | Create a wallet from a mnemonic phrase |
MCP Crypto Wallet EVM_wallet_from_encrypted_json | Create a wallet by decrypting an encrypted JSON wallet |
MCP Crypto Wallet EVM_wallet_encrypt | Encrypt a wallet with a password |
MCP Crypto Wallet EVM_wallet_get_address | Get the wallet address |
MCP Crypto Wallet EVM_wallet_get_public_key | Get the wallet public key |
MCP Crypto Wallet EVM_wallet_get_private_key | Get the wallet private key (with appropriate security warnings) |
MCP Crypto Wallet EVM_wallet_get_transaction_count | Get the number of transactions sent from this account (nonce) |
MCP Crypto Wallet EVM_wallet_call | Call a contract method without sending a transaction |
MCP Crypto Wallet EVM_wallet_send_transaction | Send a transaction |
MCP Crypto Wallet EVM_wallet_sign_transaction | Sign a transaction without sending it |
MCP Crypto Wallet EVM_wallet_populate_transaction | Populate a transaction with missing fields |
MCP Crypto Wallet EVM_wallet_sign_message | Sign a message |
MCP Crypto Wallet EVM_wallet_sign_typed_data | Sign typed data (EIP-712) |
MCP Crypto Wallet EVM_wallet_verify_message | Verify a signed message |
MCP Crypto Wallet EVM_wallet_verify_typed_data | Verify signed typed data |
MCP Crypto Wallet EVM_provider_get_block | Get a block by number or hash |
MCP Crypto Wallet EVM_provider_get_transaction | Get a transaction by hash |
MCP Crypto Wallet EVM_provider_get_transaction_receipt | Get a transaction receipt |
MCP Crypto Wallet EVM_provider_get_code | Get the code at an address |
MCP Crypto Wallet EVM_provider_get_storage_at | Get the storage at a position for an address |
MCP Crypto Wallet EVM_provider_estimate_gas | Estimate the gas required for a transaction |
MCP Crypto Wallet EVM_provider_get_logs | Get logs that match a filter |
MCP Crypto Wallet EVM_provider_get_ens_resolver | Get the ENS resolver for a name |
honeycomb-mcp-server_honeycomb_slos_list | List all SLOs for a dataset |
honeycomb-mcp-server_honeycomb_auth | Get authentication information and validate API key |
honeycomb-mcp-server_honeycomb_datasets_list | List all datasets in the environment |
honeycomb-mcp-server_honeycomb_board_update | Update an existing board |
honeycomb-mcp-server_honeycomb_board_delete | Delete a board |
honeycomb-mcp-server_honeycomb_markers_list | List all markers for a dataset |
honeycomb-mcp-server_honeycomb_dataset_get | Get information about a specific dataset |
honeycomb-mcp-server_honeycomb_datasets_create | Create a new dataset |
honeycomb-mcp-server_honeycomb_marker_create | Create a new marker for a dataset |
honeycomb-mcp-server_honeycomb_datasets_update | Update an existing dataset |
honeycomb-mcp-server_honeycomb_marker_get | Get information about a specific marker |
honeycomb-mcp-server_honeycomb_marker_update | Update an existing marker |
honeycomb-mcp-server_honeycomb_columns_list | List all columns in a dataset |
honeycomb-mcp-server_honeycomb_query_create | Create a new query for a dataset |
honeycomb-mcp-server_honeycomb_query_get | Get information about a specific query |
honeycomb-mcp-server_honeycomb_query_result_create | Create a new query result (run a query) |
honeycomb-mcp-server_honeycomb_query_result_get | Get results of a specific query execution |
honeycomb-mcp-server_honeycomb_event_create | Create a new event in a dataset |
honeycomb-mcp-server_honeycomb_batch_event_create | Create multiple events in a dataset in a single batch |
honeycomb-mcp-server_honeycomb_boards_list | List all boards |
honeycomb-mcp-server_honeycomb_board_get | Get information about a specific board |
honeycomb-mcp-server_honeycomb_board_create | Create a new board |
honeycomb-mcp-server_honeycomb_marker_delete | Delete a marker |
honeycomb-mcp-server_honeycomb_slo_get | Get information about a specific SLO |
honeycomb-mcp-server_honeycomb_slo_create | Create a new SLO for a dataset |
honeycomb-mcp-server_honeycomb_slo_update | Update an existing SLO |
honeycomb-mcp-server_honeycomb_triggers_list | List all triggers for a dataset |
honeycomb-mcp-server_honeycomb_trigger_get | Get information about a specific trigger |
honeycomb-mcp-server_honeycomb_trigger_create | Create a new trigger for a dataset |
honeycomb-mcp-server_honeycomb_trigger_update | Update an existing trigger |
honeycomb-mcp-server_honeycomb_trigger_delete | Delete a trigger |
esa MCP Server_esa_list_posts | Get a list of posts in the team (with pagination support) |
esa MCP Server_esa_get_post | Get detailed information about a specific post |
esa MCP Server_esa_create_post | Create a new post |
esa MCP Server_esa_update_post | Update an existing post |
esa MCP Server_esa_delete_post | Delete a post |
esa MCP Server_esa_list_comments | Get a list of comments for a post |
esa MCP Server_esa_get_comment | Get a specific comment |
esa MCP Server_esa_create_comment | Post a comment to an article |
esa MCP Server_esa_get_members | Get a list of team members |
esa MCP Server_esa_get_member | Get information about a specific team member |
MCP _get_merit_list | |
MCP _get_public_report | |
MCP _get_hunkuk_codes | |
MCP _get_workout_affil_codes | |
MCP _clear_cache | |
mcp-with-ssh_process_umb_command | Processes the Update Memory Bank (UMB) command |
mcp-with-ssh_complete_umb | Completes the Update Memory Bank (UMB) process |
mcp-with-ssh_switch_mode | Switches to a specific mode |
mcp-with-ssh_initialize_memory_bank | Initialize a Memory Bank in the specified directory |
mcp-with-ssh_set_memory_bank_path | Set a custom path for the Memory Bank |
mcp-with-ssh_debug_mcp_config | Debug the current MCP configuration |
mcp-with-ssh_read_memory_bank_file | Read a file from the Memory Bank |
mcp-with-ssh_write_memory_bank_file | Write to a Memory Bank file |
mcp-with-ssh_list_memory_bank_files | List Memory Bank files |
mcp-with-ssh_get_memory_bank_status | Check Memory Bank status |
mcp-with-ssh_migrate_file_naming | Migrate Memory Bank files from camelCase to kebab-case naming convention |
mcp-with-ssh_track_progress | Track progress and update Memory Bank files |
mcp-with-ssh_update_active_context | Update the active context file |
mcp-with-ssh_log_decision | Log a decision in the decision log |
mcp-with-ssh_get_current_mode | Gets information about the current mode |
BICScan MCP Server_get_risk_score | Get Risk Score for Crypto, Domain Name, ENS, CNS, KNS or even Hostname Address |
BICScan MCP Server_get_assets | Get Assets holdings by CryptoAddress |
SouthAsia MCP Tool_hello_world | A simple demonstration tool that returns a greeting message |
SouthAsia MCP Tool_hello_name | A demonstration tool that greets you by name |
Internetsearch-mcp-server_InternetSearch | Args: query: |
@chargebee/mcp_chargebee_documentation_search | Do not use this tool for code generation. For code generation use "chargebee_code_planner" tool. This tool will take in parameters about integrating with Chargebee in their application, then search and retrieve relevant Chargebee documentation content. It takes the following arguments:
|
@chargebee/mcp_chargebee_code_planner | Always use this tool to get the accurate integeration code guide for Chargebee. This tool will take in parameters about integrating with Chargebee in their application and generates a integration workflow along with the code snippets. It takes the following arguments:
|
OSSInsight MCP Server_get_repo_analysis | Get detailed analysis of a GitHub repository, including activity, stars, issues, and other metrics. |
OSSInsight MCP Server_get_developer_analysis | Get detailed analysis of a GitHub developer, including their activity and contributions. |
OSSInsight MCP Server_get_collection | Get information about a specific collection of repositories |
OSSInsight MCP Server_list_collections | List all available repository collections |
OSSInsight MCP Server_natural_language_query | Query GitHub data using natural language through the OSSInsight chat interface |
YNAB MCP Server_ynab_list_budgets | Lists all available budgets from YNAB API |
Image Analysis MCP Server_analyze_image | URLGPT-4-turbo |
Atom-of-thoughts_AoT | Atom of Thoughts (AoT) is a tool for solving complex problems by decomposing them into independent, reusable atomic units of thought. Unlike traditional sequential thinking, this tool enables more powerful problem solving by allowing atomic units of thought to form dependencies with each other. When to use:
Atom types:
Parameter descriptions:
Additional features:
Usage method:
|
Atom-of-thoughts_AoT-light | A lightweight version of Atom of Thoughts (AoT) designed for faster processing and quicker results. This streamlined version sacrifices some depth of analysis for speed, making it ideal for time-sensitive reasoning tasks. When to use:
Key differences from full AoT:
Atom types and parameters are the same as the full AoT tool. |
Atom-of-thoughts_atomcommands | A command tool to control the decomposition-contraction mechanism and automatic termination of Atom of Thoughts. Use this tool to access advanced features of AoT:
Command descriptions:
|
open-docs-mcp_search_docs | Search documentation |
open-docs-mcp_enable_doc | Enable crawling for a specific doc |
open-docs-mcp_disable_doc | Disable crawling for a specific doc |
open-docs-mcp_crawl_docs | Start crawling enabled docs |
open-docs-mcp_build_index | Build search index for docs |
Hanzo MCP_list_external_servers | List available external MCP servers. Returns: A list of available external MCP servers |
Hanzo MCP_enable_external_server | Enable an external MCP server. Args: name: The name of the server to enable Returns: The result of the operation |
Hanzo MCP_disable_external_server | Disable an external MCP server. Args: name: The name of the server to disable Returns: The result of the operation |
Hanzo MCP_set_auto_detect | Set whether to auto-detect external MCP servers. Args: enabled: Whether to enable auto-detection Returns: The result of the operation |
Hanzo MCP_dev | Universal development tool for all project operations. This tool provides a unified interface for all development operations, including file operations, command execution, project analysis, notebook operations, and vector store operations. Args: operation: The operation to perform **kwargs: Additional arguments specific to the operation Returns: Operation result as JSON or text |
Hanzo MCP_think | Use the tool to think about something. It will not obtain new information or make any changes to the repository, but just log the thought. Use it when complex reasoning or brainstorming is needed. For example, if you explore the repo and discover the source of a bug, call this tool to brainstorm several unique ways of fixing the bug, and assess which change(s) are likely to be simplest and most effective. Alternatively, if you receive some test results, call this tool to brainstorm ways to fix the failing tests. Args: thought: Your thoughts or analysis Returns: Confirmation that the thinking process has been recorded, possibly with enhanced analysis |
Hanzo MCP_run_mcp | Run operations on MCP servers. Args: operation: The operation to perform (list, start, stop, info, restart) server: The server to operate on (optional, for specific server operations) **kwargs: Additional arguments for the operation Returns: Operation result |
mcp-painter_drawing_getCanvasData | Get the current pixel data of the drawing canvas as JSON. |
mcp-painter_drawing_generateCanvas | Generate a new drawing canvas with specified width and height. |
mcp-painter_drawing_fillRectangle | Fill a rectangle on the drawing canvas with a specified color and coordinates. |
mcp-painter_drawing_getCanvasPng | Get the current drawing canvas as a PNG image (base64 encoded). |
Multi-Model Advisor_list-available-models | List all available models in Ollama that can be used with query-models |
Multi-Model Advisor_query-models | Query multiple AI models via Ollama and get their responses to compare perspectives |
Fetcher MCP_fetch_url | Retrieve web page content from a specified URL |
Fetcher MCP_fetch_urls | Retrieve web page content from multiple specified URLs |
MCP QQ Music Test Server_search_music | Search for music tracks Args: keyword: Search keyword or phrase page: Page number for pagination (default: 1) num: Maximum number of results to return (default: 20) Returns: List of music tracks matching the search criteria |
Sonos MCP Server_partymode | Enable party mode on the current Sonos device. Returns: Dict[str, Any]: The device's state after enabling party mode, including name, volume, state, and track info. |
Sonos MCP Server_get_all_device_states | Retrieve the state information for all discovered Sonos devices. Returns: List[Dict[str, Any]]: A list of dictionaries containing state information for each device. |
Sonos MCP Server_now_playing | Retrieve information about currently playing tracks on all Sonos devices. Returns: List[Dict[str, str]]: A list of dictionaries containing the name, title, artist, and album of currently playing tracks. |
Sonos MCP Server_get_device_state | Retrieve the state information for a specific Sonos device. Args: name: The name of the device to retrieve state information for. If None, uses the current device. Returns: Dict[str, Any]: A dictionary containing the device's name, volume, state, and current track information. |
Sonos MCP Server_pause | Pause playback on a Sonos device. Args: name: The name of the device to pause. If None, uses the current device. Returns: Dict[str, Any]: The device's state after pausing, including name, volume, state, and track info. |
Sonos MCP Server_stop | Stop playback on a Sonos device. Args: name: The name of the device to stop. If None, uses the current device. Returns: Dict[str, Any]: The device's state after stopping, including name, volume, state, and track info. |
Sonos MCP Server_play | Start playback on a Sonos device. Args: name: The name of the device to start playback on. If None, uses the current device. Returns: Dict[str, Any]: The device's state after starting playback, including name, volume, state, and track info. |
Sonos MCP Server_next | Skip to the next track on a Sonos device. Args: name: The name of the device to skip the track on. If None, uses the current device. Returns: Dict[str, Any]: The device's state after skipping to the next track, including name, volume, state, and track info. |
Sonos MCP Server_previous | Skip to the previous track on a Sonos device. Args: name: The name of the device to skip the track on. If None, uses the current device. Returns: Dict[str, Any]: The device's state after skipping to the previous track, including name, volume, state, and track info. |
Sonos MCP Server_get_queue | Retrieve the queue of tracks for a Sonos device. Args: name: The name of the device to retrieve the queue from. If None, uses the current device. Returns: List[Dict[str, Any]]: A list of dictionaries containing track information in the queue. |
Sonos MCP Server_mode | Get or set the play mode of a Sonos device. Args: mode: The play mode to set (e.g., "NORMAL", "SHUFFLE_NOREPEAT", "SHUFFLE", "REPEAT_ALL"). If None, returns the current mode. name: The name of the device to set the mode for. If None, uses the current device. Returns: str: The current play mode after the operation. |
Sonos MCP Server_speaker_info | Retrieve speaker information for a Sonos device. Args: name: The name of the device to retrieve speaker information from. If None, uses the current device. Returns: Dict[str, str]: A dictionary containing speaker information. |
Sonos MCP Server_get_current_track_info | Retrieve current track information for a Sonos device. Args: name: The name of the device to retrieve track information from. If None, uses the current device. Returns: Dict[str, str]: A dictionary containing the current track's artist, title, album, playlist position, and duration. |
Sonos MCP Server_volume | Get or set the volume of a Sonos device. Args: volume: The volume level to set (0-99). If None, returns current volume. name: The name of the device to control. If None, uses the current device. Returns: int: The current volume level after the operation. Raises: ValueError: If volume is not between 0 and 99. ValueError: If the specified device is not found. |
Sonos MCP Server_skip | Skip tracks in the queue for a Sonos device. Args: increment: The number of tracks to skip forward. Defaults to 1. name: The name of the device to skip tracks on. If None, uses the current device. Returns: Dict[str, Any]: The device's state after skipping tracks, including name, volume, state, and track info. Raises: ValueError: If the new track position is out of the queue's range. |
Sonos MCP Server_play_index | Play a specific track from the queue on a Sonos device. Args: index: The index of the track to play. name: The name of the device to play the track on. If None, uses the current device. Returns: Dict[str, Any]: The device's state after playing the specified track, including name, volume, state, and track info. Raises: ValueError: If the index is out of the queue's range. |
Sonos MCP Server_remove_index_from_queue | Remove a specific track from the queue on a Sonos device. Args: index: The index of the track to remove. name: The name of the device to remove the track from. If None, uses the current device. Returns: List[Dict[str, Any]]: The updated queue after removing the track. Raises: ValueError: If the index is out of the queue's range. |
Sonos MCP Server_get_queue_length | Retrieve the queue length for a Sonos device. Args: name: The name of the device to retrieve the queue length from. If None, uses the current device. Returns: int: The length of the queue. |
Cortellis MCP Server_get_drug_swot | Return SWOT analysis complementing chosen drug record for a submitted drug identifier from Cortellis API |
Cortellis MCP Server_get_drug_financial | Return financial commentary and data (actual sales and consensus forecast) for a submitted drug identifier from Cortellis API |
Cortellis MCP Server_get_company | Return the entire company record with all available fields for a given identifier from Cortellis API |
Cortellis MCP Server_search_drugs | Search for drugs in the Cortellis database. If the amount of drugs returned do not match with the totalResults, ALWAYS use the offset parameter to get the next page(s) of results. |
Cortellis MCP Server_explore_ontology | Explore the ontology or taxonomy terms in the Cortellis database |
Cortellis MCP Server_get_drug | Return the entire drug record with all available fields for a given identifier from Cortellis API |
Cortellis MCP Server_search_companies | Search for companies in the Cortellis database. If the amount of companies returned do not match with the totalResults, ALWAYS use the offset parameter to get the next page(s) of results. |
MCP Think Tool Server_think | Use this tool to think about something. It will not obtain new information or change anything, but just append the thought to the log. Use it when complex reasoning or cache memory is needed, especially during long chains of tool calls, policy adherence scenarios, or sequential decision making. |
MCP Think Tool Server_get_thoughts | Retrieve all thoughts recorded in the current session to review your reasoning process. |
MCP Think Tool Server_clear_thoughts | Clear all thoughts recorded in the current session. Use this to start fresh if the thinking process needs to be reset. |
MCP Think Tool Server_get_thought_stats | Get statistics about the thoughts recorded in the current session to analyze your thinking process. |
Superset MCP Server_query-superset | Superset |
Superset MCP Server_list-databases | - |
Superset MCP Server_list-tables | - |
Superset MCP Server_list-fields | - |
MCP Iceberg Catalog_execute_query | Execute a query on Iceberg tables |
MCP PostgreSQL Server_describe_table | Get table structure |
MCP PostgreSQL Server_list_tables | List all tables in the database |
MCP PostgreSQL Server_connect_db | Connect to PostgreSQL database. NOTE: Default connection exists - only use when requested or if other commands fail |
MCP PostgreSQL Server_query | Execute a SELECT query |
MCP PostgreSQL Server_execute | Execute an INSERT, UPDATE, or DELETE query |
mcp-youtube-transcript_get_transcripts | Extract and process transcripts from a YouTube video |
MCP Server Example_get-alerts | Get weather alerts for a state |
MCP Server Example_get-forecast | Get weather forecast for a location |
aptos-mcp_create_aptos_project | |
aptos-mcp_generate_aptos_component | |
aptos-mcp_test_aptos_contract | |
aptos-mcp_create_aptos_indexer | |
aptos-mcp_create_gas_station | |
aptos-mcp_aptos_abi_generate | |
MCP Server Pentest_browser_navigate | Navigate to a URL |
MCP Server Pentest_browser_screenshot | Take a screenshot of the current page or a specific element |
MCP Server Pentest_browser_click | Click an element on the page using CSS selector |
MCP Server Pentest_broser_url_reflected_xss | Test whether the URL has an XSS vulnerability |
MCP Server Pentest_browser_click_text | Click an element on the page by its text content |
MCP Server Pentest_browser_fill | Fill out an input field |
MCP Server Pentest_browser_select | Select an element on the page with Select tag using CSS selector |
MCP Server Pentest_browser_select_text | Select an element on the page with Select tag by its text content |
MCP Server Pentest_browser_hover | Hover an element on the page using CSS selector |
MCP Server Pentest_browser_hover_text | Hover an element on the page by its text content |
MCP Server Pentest_browser_evaluate | Execute JavaScript in the browser console |
MCP Server Pentest_browser_url_sql_injection | Test whether the URL has SQL injection vulnerabilities |
HubSpot MCP_crm_create_company | Create a new company with validated properties |
HubSpot MCP_crm_update_company | Update an existing company with validated properties |
HubSpot MCP_crm_get_company | Get a single company by ID with specific properties and associations |
HubSpot MCP_crm_search_companies | Search companies with company-specific filters |
HubSpot MCP_crm_batch_create_companies | Create multiple companies in a single request |
HubSpot MCP_crm_batch_update_companies | Update multiple companies in a single request |
HubSpot MCP_crm_get_company_properties | Get all properties for companies |
HubSpot MCP_crm_create_company_property | Create a new company property |
HubSpot MCP_crm_list_objects | List CRM objects of a specific type with optional filtering and pagination |
HubSpot MCP_crm_get_object | Get a single CRM object by ID |
HubSpot MCP_crm_create_object | Create a new CRM object |
HubSpot MCP_crm_update_object | Update an existing CRM object |
HubSpot MCP_crm_delete_object | Delete a CRM object |
HubSpot MCP_crm_create_contact_property | Create a new contact property |
HubSpot MCP_crm_search_objects | Search CRM objects using filters |
HubSpot MCP_crm_batch_create_objects | Create multiple CRM objects in a single request |
HubSpot MCP_crm_batch_update_objects | Update multiple CRM objects in a single request |
HubSpot MCP_crm_batch_delete_objects | Delete multiple CRM objects in a single request |
HubSpot MCP_crm_list_association_types | List all available association types for a given object type pair |
HubSpot MCP_crm_get_associations | Get all associations of a specific type between objects |
HubSpot MCP_crm_create_association | Create an association between two objects |
HubSpot MCP_crm_delete_association | Delete an association between two objects |
HubSpot MCP_crm_batch_create_associations | Create multiple associations in a single request |
HubSpot MCP_crm_batch_delete_associations | Delete multiple associations in a single request |
HubSpot MCP_crm_create_contact | Create a new contact with validated properties |
HubSpot MCP_crm_update_contact | Update an existing contact with validated properties |
HubSpot MCP_crm_get_contact | Get a single contact by ID with specific properties and associations |
HubSpot MCP_crm_search_contacts | Search contacts with contact-specific filters |
HubSpot MCP_crm_batch_create_contacts | Create multiple contacts in a single request |
HubSpot MCP_crm_batch_update_contacts | Update multiple contacts in a single request |
HubSpot MCP_crm_get_contact_properties | Get all properties for contacts |
HubSpot MCP_crm_create_lead | Create a new lead with validated properties |
HubSpot MCP_notes_list | List all notes with optional filtering |
HubSpot MCP_crm_update_lead | Update an existing lead with validated properties |
HubSpot MCP_crm_get_lead | Get a single lead by ID with specific properties and associations |
HubSpot MCP_crm_search_leads | Search leads with lead-specific filters |
HubSpot MCP_crm_batch_create_leads | Create multiple leads in a single request |
HubSpot MCP_crm_batch_update_leads | Update multiple leads in a single request |
HubSpot MCP_crm_get_lead_properties | Get all properties for leads |
HubSpot MCP_crm_create_lead_property | Create a new lead property |
HubSpot MCP_meetings_list | List all meetings with optional filtering |
HubSpot MCP_meetings_get | Get details of a specific meeting |
HubSpot MCP_calls_get | Get details of a specific call |
HubSpot MCP_meetings_create | Create a new meeting |
HubSpot MCP_meetings_update | Update an existing meeting |
HubSpot MCP_meetings_delete | Delete a meeting |
HubSpot MCP_meetings_search | Search meetings with specific filters |
HubSpot MCP_meetings_batch_create | Create multiple meetings in a single request |
HubSpot MCP_meetings_batch_update | Update multiple meetings in a single request |
HubSpot MCP_meetings_batch_archive | Archive (delete) multiple meetings in a single request |
HubSpot MCP_notes_create | Create a new note |
HubSpot MCP_notes_get | Get details of a specific note |
HubSpot MCP_notes_update | Update an existing note |
HubSpot MCP_notes_archive | Archive (delete) a note |
HubSpot MCP_notes_search | Search notes with specific filters |
HubSpot MCP_notes_batch_create | Create multiple notes in a single request |
HubSpot MCP_notes_batch_read | Read multiple notes in a single request |
HubSpot MCP_notes_batch_update | Update multiple notes in a single request |
HubSpot MCP_notes_batch_archive | Archive (delete) multiple notes in a single request |
HubSpot MCP_tasks_create | Create a new task |
HubSpot MCP_tasks_get | Get details of a specific task |
HubSpot MCP_tasks_update | Update an existing task |
HubSpot MCP_tasks_archive | Archive (delete) a task |
HubSpot MCP_tasks_list | List all tasks with optional filtering |
HubSpot MCP_tasks_search | Search tasks with specific filters |
HubSpot MCP_tasks_batch_create | Create multiple tasks in a single request |
HubSpot MCP_tasks_batch_read | Read multiple tasks in a single request |
HubSpot MCP_tasks_batch_update | Update multiple tasks in a single request |
HubSpot MCP_tasks_batch_archive | Archive (delete) multiple tasks in a single request |
HubSpot MCP_engagement_details_get | Get details of a specific engagement |
HubSpot MCP_engagement_details_create | Create a new engagement with details |
HubSpot MCP_engagement_details_update | Update an existing engagement's details |
HubSpot MCP_engagement_details_list | List all engagements with optional filtering |
HubSpot MCP_engagement_details_delete | Delete an engagement |
HubSpot MCP_engagement_details_get_associated | Get all engagements associated with an object |
HubSpot MCP_calls_create | Create a new call record |
HubSpot MCP_calls_update | Update an existing call record |
HubSpot MCP_calls_archive | Archive (delete) a call record |
HubSpot MCP_calls_list | List all calls with optional filtering |
HubSpot MCP_calls_search | Search calls with specific filters |
HubSpot MCP_calls_batch_create | Create multiple call records in a single request |
HubSpot MCP_calls_batch_read | Read multiple call records in a single request |
HubSpot MCP_calls_batch_update | Update multiple call records in a single request |
HubSpot MCP_calls_batch_archive | Archive (delete) multiple call records in a single request |
HubSpot MCP_emails_create | Create a new email record |
HubSpot MCP_emails_get | Get details of a specific email |
HubSpot MCP_emails_update | Update an existing email record |
HubSpot MCP_emails_archive | Archive (delete) an email record |
HubSpot MCP_emails_list | List all emails with optional filtering |
HubSpot MCP_emails_search | Search emails with specific filters |
HubSpot MCP_communications_update_subscription_status | Update subscription status for multiple contacts |
HubSpot MCP_emails_batch_create | Create multiple email records in a single request |
HubSpot MCP_emails_batch_read | Read multiple email records in a single request |
HubSpot MCP_emails_batch_update | Update multiple email records in a single request |
HubSpot MCP_emails_batch_archive | Archive (delete) multiple email records in a single request |
HubSpot MCP_communications_get_preferences | Get communication preferences for a contact |
HubSpot MCP_communications_update_preferences | Update communication preferences for a contact |
HubSpot MCP_communications_unsubscribe_contact | Unsubscribe a contact from all email communications |
HubSpot MCP_communications_subscribe_contact | Subscribe a contact to all email communications |
HubSpot MCP_communications_get_subscription_definitions | Get all subscription definitions for the portal |
HubSpot MCP_communications_get_subscription_status | Get subscription status for multiple contacts |
Letz AI MCP_letzai_create_image | Create an image using the LetzAI public api |
Letz AI MCP_letzai_upscale_image | Upscale an image using the LetzAI public api |
time-mcp_get_timestamp | Get the timestamp of a time. |
time-mcp_convert_time | Convert time between timezones. |
time-mcp_current_time | Get the current date and time. |
time-mcp_relative_time | Get the relative time from now. |
time-mcp_days_in_month | Get the number of days in a month. |
Atlassian Confluence MCP Server_list-spaces | List Confluence spaces with optional filtering capabilities. PURPOSE: Discovers available spaces in your Confluence instance with their keys, names, types, and URLs. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Formatted list of spaces with IDs, keys, names, types, and URLs, plus pagination info. EXAMPLES:
ERRORS:
|
Atlassian Confluence MCP Server_get-space | Get detailed information about a specific Confluence space by ID or key. PURPOSE: Retrieves comprehensive space metadata including description, homepage, permissions, and more. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Detailed space information including key, name, description, type, homepage, and metadata. EXAMPLES:
ERRORS:
|
Atlassian Confluence MCP Server_list-pages | List Confluence pages with optional filtering by space and status. PURPOSE: Finds pages within Confluence spaces with their IDs, titles, and locations to help you discover available content. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Formatted list of pages with IDs, titles, space information, and URLs, plus pagination info. EXAMPLES:
ERRORS:
|
Atlassian Confluence MCP Server_get-page | Get detailed information and content of a specific Confluence page by ID. PURPOSE: Retrieves the full content of a page in Markdown format along with comprehensive metadata. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Complete page content in Markdown format with metadata including title, author, version, space, and creation/modification dates. EXAMPLES:
ERRORS:
|
Atlassian Confluence MCP Server_search | Search for content across Confluence using Confluence Query Language (CQL). PURPOSE: Finds content matching specific criteria with excerpts showing matches, helping you discover relevant information across spaces. WHEN TO USE:
WHEN NOT TO USE:
RETURNS: Search results with titles, excerpts showing matches, content types, spaces, and URLs, plus pagination info. EXAMPLES:
ERRORS:
|
URL Shortener MCP_shorten | Shorten a URL using the cleanuri API. |
Nostr MCP Server_getProfile | Get a Nostr profile by public key |
Nostr MCP Server_getKind1Notes | Get text notes (kind 1) by public key |
Nostr MCP Server_getReceivedZaps | Get zaps received by a public key |
Nostr MCP Server_getSentZaps | Get zaps sent by a public key |
Nostr MCP Server_getAllZaps | Get all zaps (sent and received) for a public key |
Aiven MCP Server_list_projects | - |
Aiven MCP Server_list_services | - |
Aiven MCP Server_get_service_details | - |
Revit MCP_color_elements | Color elements in the current view based on a category and parameter value. Each unique parameter value gets assigned a distinct color. |
Revit MCP_get_current_view_elements | Get elements from the current active view in Revit. You can filter by model categories (like Walls, Floors) or annotation categories (like Dimensions, Text). Use includeHidden to show/hide invisible elements and limit to control the number of returned elements. |
Revit MCP_create_line_based_element | Create one or more line-based elements in Revit such as walls, beams, or pipes. Supports batch creation with detailed parameters including family type ID, start and end points, thickness, height, and level information. All units are in millimeters (mm). |
Revit MCP_create_point_based_element | Create one or more point-based elements in Revit such as doors, windows, or furniture. Supports batch creation with detailed parameters including family type ID, position, dimensions, and level information. All units are in millimeters (mm). |
Revit MCP_create_surface_based_element | Create one or more surface-based elements in Revit such as floors, ceilings, or roofs. Supports batch creation with detailed parameters including family type ID, boundary lines, thickness, and level information. All units are in millimeters (mm). |
Revit MCP_delete_element | Delete one or more elements from the Revit model by their element IDs. |
Revit MCP_get_available_family_types | Get available family types in the current Revit project. You can filter by category and family name, and limit the number of returned types. |
Revit MCP_get_current_view_info | Revit |
Revit MCP_get_selected_elements | Get elements currently selected in Revit. You can limit the number of returned elements. |
Revit MCP_send_code_to_revit | Send C# code to Revit for execution. The code will be inserted into a template with access to the Revit Document and parameters. Your code should be written to work within the Execute method of the template. |
Revit MCP_tag_all_walls | Create tags for all walls in the current active view. Tags will be placed at the middle point of each wall. |
Starwind UI MCP Server_init_project | Initializes a new project with Starwind UI |
Starwind UI MCP Server_install_component | Generates installation commands for Starwind UI components |
Starwind UI MCP Server_update_component | Generates update commands for Starwind UI components |
Starwind UI MCP Server_get_documentation | Returns documentation links for Starwind UI |
Starwind UI MCP Server_fetch_llm_data | Fetches LLM data from starwind.dev (rate limited to 3 requests per minute, with caching) |
Starwind UI MCP Server_get_package_manager | Detects and returns the current package manager information |
Armor Crypto MCP_create_groups | |
Armor Crypto MCP_get_wallet_token_balance | |
Armor Crypto MCP_conversion_api | |
Armor Crypto MCP_swap_quote | |
Armor Crypto MCP_swap_transaction | |
Armor Crypto MCP_get_token_details | |
Armor Crypto MCP_list_groups | |
Armor Crypto MCP_list_single_group | |
Armor Crypto MCP_create_wallet | |
Armor Crypto MCP_archive_wallets | |
Armor Crypto MCP_unarchive_wallets | |
Armor Crypto MCP_add_wallets_to_group | |
Armor Crypto MCP_archive_wallet_group | |
Armor Crypto MCP_unarchive_wallet_group | |
Armor Crypto MCP_remove_wallets_from_group | |
Armor Crypto MCP_get_user_wallets_and_groups_list | |
Armor Crypto MCP_transfer_tokens | |
Armor Crypto MCP_create_dca_order | |
Armor Crypto MCP_list_dca_orders | |
Armor Crypto MCP_cancel_dca_order | |
PagerDuty MCP Server_list_escalation_policies | List existing escalation policies based on the given criteria. Args: current_user_context (bool): Whether to use the current user's ID/team IDs context (default: True, cannot be used with user_ids or team_ids) query (str): Filter escalation policies whose names contain the search query (optional) user_ids (List[str]): Filter results to only escalation policies that include the given user IDs (optional, cannot be used with current_user_context) team_ids (List[str]): Filter results to only escalation policies assigned to teams with the given IDs (optional, cannot be used with current_user_context) Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of escalation policies matching the specified criteria |
PagerDuty MCP Server_show_escalation_policy | Show details about a given escalation policy. Args: policy_id (str): The ID of the escalation policy to show Returns: Dict[str, Any]: Escalation policy object with detailed information |
PagerDuty MCP Server_show_team | Get detailed information about a given team. Args: team_id (str): The ID of the team to get Returns: Dict[str, Any]: Team object with detailed information |
PagerDuty MCP Server_show_current_user | Get the current user's PagerDuty profile including their teams, contact methods, and notification rules. Returns: Dict[str, Any]: The user object containing profile information in the following format (note this is non-exhaustive): { "name": "John Doe", "email": "john.doe@example.com", "role": "user", "description": "John Doe is a user at Example Inc.", "job_title": "Software Engineer", "teams": [ { "id": "P123456", "summary": "Team Name 1" }, ... ], "contact_methods": [ { "id": "P123456", "summary": "Mobile" }, ... ], "notification_rules": [ { "id": "P123456", "summary": "0 minutes: channel XYZ" }, ... ], "id": "P123456" } |
PagerDuty MCP Server_list_incidents | List PagerDuty incidents based on specified filters. Args: current_user_context (bool): Boolean, use the current user's team_ids and service_ids to filter (default: True, cannot be used with service_ids or team_ids) service_ids (List[str]): list of PagerDuty service IDs to filter by (optional, cannot be used with current_user_context) team_ids (List[str]): list of PagerDuty team IDs to filter by (optional, cannot be used with current_user_context) statuses (List[str]): list of status values to filter by (optional). Valid values are: - 'triggered' - The incident is currently active (included by default) - 'acknowledged' - The incident has been acknowledged by a user (included by default) - 'resolved' - The incident has been resolved (excluded by default) since (str): Start of date range in ISO8601 format (optional). Default is 1 month ago until (str): End of date range in ISO8601 format (optional). Default is now Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of incidents matching the specified criteria |
PagerDuty MCP Server_show_incident | Get detailed information about a given incident. Args: incident_id (str): The ID or number of the incident to get Returns: Dict[str, Any]: Incident object with detailed information |
PagerDuty MCP Server_list_oncalls | List the on-call entries during a given time range. Args: current_user_context (bool): Use the current user's ID to filter (default: True, cannot be used with user_ids or escalation_policy_ids) schedule_ids (List[str]): Return only on-calls for the specified schedule IDs (optional) user_ids (List[str]): Return only on-calls for the specified user IDs (optional, cannot be used with current_user_context) escalation_policy_ids (List[str]): Return only on-calls for the specified escalation policy IDs (optional, cannot be used with current_user_context) since (str): Start of date range in ISO8601 format (optional). Default is 1 month ago until (str): End of date range in ISO8601 format (optional). Default is now Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of on-call entries matching the specified criteria |
PagerDuty MCP Server_list_schedules | List the on-call schedules. Args: query (str): Filter schedules whose names contain the search query (optional) Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of schedules matching the specified criteria |
PagerDuty MCP Server_show_schedule | Show detailed information about a given schedule. Args: schedule_id (str): The ID of the schedule to get since (str): The start of the time range over which you want to search. Defaults to 2 weeks before until if an until is given. (optional) until (str): The end of the time range over which you want to search. Defaults to 2 weeks after since if a since is given. (optional) Returns: Dict[str, Any]: Schedule object with detailed information |
PagerDuty MCP Server_list_services | List existing PagerDuty services. Args: current_user_context (bool): Use the current user's team IDs to filter (default: True, cannot be used with team_ids) team_ids (List[str]): Filter results to only services assigned to teams with the given IDs (optional, cannot be used with current_user_context) query (str): Filter services whose names contain the search query (optional) Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of services matching the specified criteria |
PagerDuty MCP Server_show_service | Get details about a given service. Args: service_id (str): The ID of the service to get Returns: Dict[str, Any]: Service object with detailed information |
PagerDuty MCP Server_list_teams | List teams in your PagerDuty account. Args: query (str): Filter teams whose names contain the search query (optional) Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of teams matching the specified criteria |
PagerDuty MCP Server_list_users | List users in PagerDuty. Args: current_user_context (bool): Use the current user's team IDs to filter (default: True, cannot be used with team_ids) team_ids (List[str]): A list of team IDs to filter users (optional, cannot be used with current_user_context) query (str): A search query to filter users (optional) Returns: Dict[str, Any]: Dictionary containing metadata (count, description) and a list of users matching the specified criteria |
PagerDuty MCP Server_show_user | Get detailed information about a given user. Args: user_id (str): The ID of the user to get Returns: Dict[str, Any]: User object with detailed information |
MCP Outline Server_list_trash | |
MCP Outline Server_search_documents | |
MCP Outline Server_list_collections | |
MCP Outline Server_get_collection_structure | |
MCP Outline Server_get_document_id_from_title | |
MCP Outline Server_read_document | |
MCP Outline Server_export_document | |
MCP Outline Server_create_document | |
MCP Outline Server_update_document | adding to it. To update a document with changed data, you need to first read the document, add your changes to the content, and then send the complete document with your changes. |
MCP Outline Server_add_comment | |
MCP Outline Server_move_document | |
MCP Outline Server_archive_document | |
MCP Outline Server_unarchive_document | |
MCP Outline Server_delete_document | |
MCP Outline Server_restore_document | |
MCP Outline Server_list_archived_documents | |
MCP Outline Server_list_document_comments | |
MCP Outline Server_get_comment | |
MCP Outline Server_get_document_backlinks | document |
MCP Outline Server_create_collection | |
MCP Outline Server_update_collection | |
MCP Outline Server_delete_collection | within the collection. |
MCP Outline Server_export_collection | |
MCP Outline Server_export_all_collections | |
MCP Outline Server_ask_ai_about_documents | onboard new clients?" |
Shodan MCP Server_get_host_info | Get detailed information about a specific IP address |
Shodan MCP Server_search_shodan | Search Shodan's database for devices and services |
Shodan MCP Server_scan_network_range | Scan a network range (CIDR notation) for devices |
Shodan MCP Server_get_ssl_info | Get SSL certificate information for a domain |
Shodan MCP Server_search_iot_devices | Search for specific types of IoT devices |
Microsoft Todo MCP Service_auth-status | Check if you're authenticated with Microsoft Graph API. Shows current token status and expiration time, and indicates if the token needs to be refreshed. |
Microsoft Todo MCP Service_get-task-lists | Get all Microsoft Todo task lists (the top-level containers that organize your tasks). Shows list names, IDs, and indicates default or shared lists. |
Microsoft Todo MCP Service_create-task-list | Create a new task list (top-level container) in Microsoft Todo to help organize your tasks into categories or projects. |
Microsoft Todo MCP Service_update-task-list | Update the name of an existing task list (top-level container) in Microsoft Todo. |
Microsoft Todo MCP Service_delete-task-list | Delete a task list (top-level container) from Microsoft Todo. This will remove the list and all tasks within it. |
Microsoft Todo MCP Service_get-tasks | Get tasks from a specific Microsoft Todo list. These are the main todo items that can contain checklist items (subtasks). |
Microsoft Todo MCP Service_create-task | Create a new task in a specific Microsoft Todo list. A task is the main todo item that can have a title, description, due date, and other properties. |
Microsoft Todo MCP Service_update-task | Update an existing task in Microsoft Todo. Allows changing any properties of the task including title, due date, importance, etc. |
Microsoft Todo MCP Service_delete-task | Delete a task from a Microsoft Todo list. This will remove the task and all its checklist items (subtasks). |
Microsoft Todo MCP Service_get-checklist-items | Get checklist items (subtasks) for a specific task. Checklist items are smaller steps or components that belong to a parent task. |
Microsoft Todo MCP Service_create-checklist-item | Create a new checklist item (subtask) for a task. Checklist items help break down a task into smaller, manageable steps. |
Microsoft Todo MCP Service_update-checklist-item | Update an existing checklist item (subtask). Allows changing the text content or completion status of the subtask. |
Microsoft Todo MCP Service_delete-checklist-item | Delete a checklist item (subtask) from a task. This removes just the specific subtask, not the parent task. |
Zotero MCP_zotero_search_items | Search for items in your Zotero library, given a query string. |
Zotero MCP_zotero_get_item_metadata | Get detailed metadata for a specific Zotero item by its key. |
Zotero MCP_zotero_get_item_fulltext | Get the full text content of a Zotero item by its key. |
Zotero MCP_zotero_get_collections | List all collections in your Zotero library. |
Zotero MCP_zotero_get_collection_items | Get all items in a specific Zotero collection. |
Zotero MCP_zotero_get_item_children | Get all child items (attachments, notes) for a specific Zotero item. |
Zotero MCP_zotero_get_tags | Get all tags used in your Zotero library. |
Zotero MCP_zotero_get_recent | Get recently added items to your Zotero library. |
Zotero MCP_zotero_batch_update_tags | Batch update tags across multiple items matching a search query. |
Zotero MCP_zotero_advanced_search | Perform an advanced search with multiple criteria. |
S3 MCP Server_list-buckets | List available S3 buckets |
S3 MCP Server_list-objects | List objects in an S3 bucket |
S3 MCP Server_get-object | Retrieve an object from an S3 bucket |
Linear_linear_getIssueById | Get a specific issue by ID or identifier (e.g., ABC-123) |
Linear_linear_duplicateIssue | Duplicate an issue |
Linear_linear_getIssueHistory | Get the history of changes made to an issue |
Linear_linear_getViewer | Get information about the currently authenticated user |
Linear_linear_getOrganization | Get information about the current Linear organization |
Linear_linear_getUsers | Get a list of users in the Linear organization |
Linear_linear_getLabels | Get a list of issue labels from Linear |
Linear_linear_getTeams | Get a list of teams from Linear |
Linear_linear_getWorkflowStates | Get workflow states for a team |
Linear_linear_getProjects | Get a list of projects from Linear |
Linear_linear_createProject | Create a new project in Linear |
Linear_linear_updateProject | Update an existing project in Linear |
Linear_linear_addIssueToProject | Add an existing issue to a project |
Linear_linear_getProjectIssues | Get all issues associated with a project |
Linear_linear_getCycles | Get a list of all cycles |
Linear_linear_getActiveCycle | Get the currently active cycle for a team |
Linear_linear_addIssueToCycle | Add an issue to a cycle |
Linear_linear_getIssues | Get a list of recent issues from Linear |
Linear_linear_searchIssues | Search for issues with various filters |
Linear_linear_createIssue | Create a new issue in Linear |
Linear_linear_updateIssue | Update an existing issue in Linear |
Linear_linear_createComment | Add a comment to an issue in Linear |
Linear_linear_addIssueLabel | Add a label to an issue in Linear |
Linear_linear_removeIssueLabel | Remove a label from an issue in Linear |
Linear_linear_assignIssue | Assign an issue to a user |
Linear_linear_subscribeToIssue | Subscribe to issue updates |
Linear_linear_convertIssueToSubtask | Convert an issue to a subtask |
Linear_linear_createIssueRelation | Create relations between issues (blocks, is blocked by, etc.) |
Linear_linear_archiveIssue | Archive an issue |
Linear_linear_setIssuePriority | Set the priority of an issue |
Linear_linear_transferIssue | Transfer an issue to another team |
Linear_linear_getComments | Get all comments for an issue |
Think Tool MCP Server_think | Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed. |
crypto-sentiment-mcp_get_sentiment_balance | Retrieve the sentiment balance (sentiment_balance_total) for a given asset. Parameters:
Usage:
Returns:
|
crypto-sentiment-mcp_get_social_volume | Retrieve the total social volume (social_volume_total) for a given asset. It calculates the total number of social data text documents that contain the given search term at least once. Examples of documents are telegram messages and reddit posts. Parameters:
Usage:
Returns:
|
crypto-sentiment-mcp_alert_social_shift | Detect significant shifts (spikes or drops) in social volume (social_volume_total) for a given asset. Parameters:
Usage:
Returns:
|
crypto-sentiment-mcp_get_trending_words | Retrieve the top trending words in the crypto space over a specified period, aggregated and ranked by score. Parameters:
Usage:
Returns:
|
crypto-sentiment-mcp_get_social_dominance | Retrieve the social dominance (social_dominance_total) for a given asset. Social Dominance shows the share of the discussions in crypto media that is referring to a particular asset or phrase. Parameters:
Usage:
Returns:
|
taskqueue-mcp_list_projects | List all projects in the system and their basic information (ID, initial prompt, task counts), optionally filtered by state (open, pending_approval, completed, all). |
taskqueue-mcp_read_project | Read all information for a given project, by its ID, including its tasks' statuses. |
taskqueue-mcp_create_project | Create a new project with an initial prompt and a list of tasks. This is typically the first step in any workflow. |
taskqueue-mcp_delete_project | Delete a project and all its associated tasks. |
taskqueue-mcp_add_tasks_to_project | Add new tasks to an existing project. |
taskqueue-mcp_finalize_project | Mark a project as complete. Can only be called when all tasks are both done and approved. This is typically the last step in a project workflow. |
taskqueue-mcp_list_tasks | List all tasks, optionally filtered by project ID and/or state (open, pending_approval, completed, all). Tasks may include tool and rule recommendations to guide their completion. |
taskqueue-mcp_read_task | Get details of a specific task by its ID. The task may include toolRecommendations and ruleRecommendations fields that should be used to guide task completion. |
taskqueue-mcp_create_task | Create a new task within an existing project. You can optionally include tool and rule recommendations to guide task completion. |
taskqueue-mcp_update_task | Modify a task's properties. Note: (1) completedDetails are required when setting status to 'done', (2) approved tasks cannot be modified, (3) status must follow valid transitions: not started in progress done. You can also update tool and rule recommendations to guide task completion. |
taskqueue-mcp_delete_task | Remove a task from a project. |
taskqueue-mcp_approve_task | Approve a completed task. Tasks must be marked as 'done' with completedDetails before approval. Note: This is a CLI-only operation that requires human intervention. |
taskqueue-mcp_get_next_task | Get the next task to be done in a project. Returns the first non-approved task in sequence, regardless of status. The task may include toolRecommendations and ruleRecommendations fields that should be used to guide task completion. |
ZIP-MCP_compress | Compress local files or directories into a ZIP file |
ZIP-MCP_decompress | Decompress local ZIP file to specified directory |
ZIP-MCP_getZipInfo | Get metadata information of a local ZIP file |
ZIP-MCP_echo | Return the input message (for testing) |
MySql MCP Server_use_database | Switch to a different database. |
MySql MCP Server_set_readonly | Enable or disable read-only mode |
MySql MCP Server_list_tables | Get a list of tables in the current database. |
MySql MCP Server_describe_table | Get the structure of a specific table. |
MySql MCP Server_list_databases | Get a list of all accessible databases on the server. |
MySql MCP Server_status | Check the current database connection status. |
MySql MCP Server_connect | Connect to a MySQL database. |
MySql MCP Server_disconnect | Close the current MySQL database connection. |
MySql MCP Server_query | Execute an SQL query on the connected database. |
Japanese Text Analyzer_count-chars | Windows C:\Users...WSL/Linux /c/Users/... |
Japanese Text Analyzer_count-words | Windows C:\Users...WSL/Linux /c/Users/... |
Japanese Text Analyzer_count-clipboard-chars | - |
Japanese Text Analyzer_count-clipboard-words | - |
Strava MCP Server_get_user_activities | Get the authenticated user's activities. Args: ctx: The MCP request context before: An epoch timestamp for filtering activities before a certain time after: An epoch timestamp for filtering activities after a certain time page: Page number per_page: Number of items per page Returns: List of activities |
Strava MCP Server_get_activity | Get details of a specific activity. Args: ctx: The MCP request context activity_id: The ID of the activity include_all_efforts: Whether to include all segment efforts Returns: The activity details |
Strava MCP Server_get_activity_segments | Get the segments of a specific activity. Args: ctx: The MCP request context activity_id: The ID of the activity Returns: List of segment efforts for the activity |
Weather MCP Server_weather | It fetches the latest weather reports for the given city. Args: city (str): The city name for which weather reports are required. Returns: dict: The weather reports for the given city. |
User Feedback_user_feedback | Request user feedback for a given project directory and summary |
Vibe Check MCP_vibe_check | Metacognitive questioning tool that identifies assumptions and breaks tunnel vision to prevent cascading errors |
Vibe Check MCP_vibe_distill | Plan simplification tool that reduces complexity and extracts essential elements to prevent over-engineering |
Vibe Check MCP_vibe_learn | Pattern recognition system that tracks common errors and solutions to prevent recurring issues |
cloudinary-mcp-server_upload | Upload a file (asset) to Cloudinary |
cloudinary-mcp-server_delete-asset | Delete a file (asset) from Cloudinary |
cloudinary-mcp-server_get-asset | Get the details of a specific file (asset) |
cloudinary-mcp-server_find-assets | Search for existing files (assets) in Cloudinary with a query expression |
cloudinary-mcp-server_get-usage | Get a report on the status of your product environment usage, including storage, credits, bandwidth, requests, number of resources, and add-on usage |
mcp-sleep_sleep | If you need to wait for a few seconds to continue with the task you are performing . |
Tripo MCP Server_get_scene_info | Get detailed information about the current Blender scene |
Tripo MCP Server_get_object_info | |
Tripo MCP Server_create_object | |
Tripo MCP Server_modify_object | |
Tripo MCP Server_delete_object | |
Tripo MCP Server_set_material | |
Tripo MCP Server_execute_blender_code | |
Tripo MCP Server_get_polyhaven_categories | |
Tripo MCP Server_search_polyhaven_assets | |
Tripo MCP Server_download_polyhaven_asset | |
Tripo MCP Server_set_texture | |
Tripo MCP Server_get_polyhaven_status | |
Tripo MCP Server_create_3d_model_from_text | |
Tripo MCP Server_import_tripo_glb_model | |
Tripo MCP Server_get_task_status | |
gotoHuman MCP_list-forms | List all available review forms. NOTE: You need to fetch the schema for the form fields first using the get-form-schema tool. |
gotoHuman MCP_get-form-schema | Get the schema to use for the 'fields' property when requesting a human review with a form. |
gotoHuman MCP_request-human-review-with-form | Request a human review with a form. NOTE: If you don't have a form ID yet, list all available forms using the list-forms tool first. To know what to pass for fieldData, you need to fetch the schema for the form fields using the get-form-schema tool. |
CoinMarketCap MCP_exchangeMap | Returns a mapping of all exchanges to unique CoinMarketCap IDs. |
CoinMarketCap MCP_globalMetricsLatest | Returns the latest global cryptocurrency market metrics. |
CoinMarketCap MCP_cryptoCategories | Returns information about all coin categories available on CoinMarketCap. |
CoinMarketCap MCP_cryptoCategory | Returns information about a single coin category on CoinMarketCap. |
CoinMarketCap MCP_cryptoCurrencyMap | Returns a mapping of all cryptocurrencies to unique CoinMarketCap IDs. |
CoinMarketCap MCP_getCryptoMetadata | Returns all static metadata for one or more cryptocurrencies including logo, description, and website URLs. |
CoinMarketCap MCP_allCryptocurrencyListings | Returns a paginated list of all active cryptocurrencies with latest market data. |
CoinMarketCap MCP_cryptoQuotesLatest | Returns the latest market quote for one or more cryptocurrencies. |
CoinMarketCap MCP_dexInfo | Returns all static metadata for one or more decentralised exchanges. |
CoinMarketCap MCP_dexListingsLatest | Returns a paginated list of all decentralised cryptocurrency exchanges including the latest aggregate market data. |
CoinMarketCap MCP_dexNetworksList | Returns a list of all networks to unique CoinMarketCap ids. |
CoinMarketCap MCP_dexSpotPairsLatest | Returns a paginated list of all active dex spot pairs with latest market data. |
CoinMarketCap MCP_dexPairsQuotesLatest | Returns the latest market quote for 1 or more spot pairs. |
CoinMarketCap MCP_dexPairsOhlcvLatest | Returns the latest OHLCV market values for one or more spot pairs for the current UTC day. |
CoinMarketCap MCP_dexPairsOhlcvHistorical | Returns historical OHLCV data along with market cap for any spot pairs using time interval parameters. |
CoinMarketCap MCP_dexPairsTradeLatest | Returns up to the latest 100 trades for 1 spot pair. |
CoinMarketCap MCP_exchangeAssets | Returns the assets/token holdings of an exchange. |
CoinMarketCap MCP_exchangeInfo | Returns metadata for one or more exchanges. |
CoinMarketCap MCP_cmc100IndexHistorical | Returns an interval of historic CoinMarketCap 100 Index values based on the interval parameter. |
CoinMarketCap MCP_cmc100IndexLatest | Returns the lastest CoinMarketCap 100 Index value, constituents, and constituent weights. |
CoinMarketCap MCP_fearAndGreedLatest | Returns the latest CMC Crypto Fear and Greed Index value. |
CoinMarketCap MCP_fearAndGreedHistorical | Returns historical CMC Crypto Fear and Greed Index values. |
CoinMarketCap MCP_fiatMap | Returns a mapping of all supported fiat currencies to unique CoinMarketCap IDs. |
CoinMarketCap MCP_getPostmanCollection | Returns a Postman collection for the CoinMarketCap API. |
CoinMarketCap MCP_priceConversion | Convert an amount of one cryptocurrency or fiat currency into one or more different currencies. |
CoinMarketCap MCP_keyInfo | Returns API key details and usage stats. |
Bluesky MCP Server_search-people | Search for users/actors on Bluesky |
Bluesky MCP Server_get-my-handle-and-did | Return the handle and did of the currently authenticated user for this blusesky session. Useful for when someone asks information about themselves using "me" or "my" on bluesky. |
Bluesky MCP Server_get-timeline-posts | Fetch your home timeline from Bluesky, which includes posts from all of the people you follow in reverse chronological order |
Bluesky MCP Server_create-post | Create a new post on Bluesky |
Bluesky MCP Server_get-profile | Get a user's profile from Bluesky |
Bluesky MCP Server_search-posts | Search for posts on Bluesky |
Bluesky MCP Server_search-feeds | Search for custom feeds on Bluesky |
Bluesky MCP Server_get-liked-posts | Get a list of posts that the authenticated user has liked |
Bluesky MCP Server_get-trends | Get current trending topics on Bluesky |
Bluesky MCP Server_like-post | Like a post on Bluesky |
Bluesky MCP Server_follow-user | Follow a user on Bluesky |
Bluesky MCP Server_get-pinned-feeds | Get the authenticated user's pinned feeds and lists. |
Bluesky MCP Server_get-feed-posts | Fetch posts from a specified feed |
Bluesky MCP Server_get-list-posts | Fetch posts from users in a specified list |
Bluesky MCP Server_get-user-posts | Fetch posts from a specific user |
Bluesky MCP Server_get-follows | Get a list of users that a person follows |
Bluesky MCP Server_get-post-likes | Get information about users who have liked a specific post |
Bluesky MCP Server_list-resources | List all available MCP resources with their descriptions |
MCP Feishu Project Manager_get_view_list | |
MCP Feishu Project Manager_get_view_detail | |
MCP Feishu Project Manager_get_work_item_detail | |
MCP Feishu Project Manager_get_work_item_type_meta | |
MCP Shell Server_shell_exec | Executes commands in the specified shell |
Fewsats MCP Server_pay_offer | Pays an offer_id from the l402_offers. |
Fewsats MCP Server_payment_info | Retrieve the details of a payment.
If payment status is |
Fewsats MCP Server_balance | Retrieve the balance of the user's wallet. You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues. Fewsats will automatically add balance when needed. |
Fewsats MCP Server_payment_methods | Retrieve the user's payment methods. You will rarely need to call this unless instructed by the user, or to troubleshoot payment issues. Fewsats will automatically select the best payment method. |
Google Workspace MCP Server_list_emails | List recent emails from Gmail inbox |
Google Workspace MCP Server_search_emails | Search emails with advanced query |
Google Workspace MCP Server_send_email | Send a new email |
Google Workspace MCP Server_modify_email | Modify email labels (archive, trash, mark read/unread) |
Google Workspace MCP Server_list_events | List upcoming calendar events |
Google Workspace MCP Server_create_event | Create a new calendar event |
Google Workspace MCP Server_update_event | Update an existing calendar event |
Google Workspace MCP Server_delete_event | Delete a calendar event |
Oxylabs MCP Server_oxylabs_scraper | Scrape url using Oxylabs Web Api |
Oxylabs MCP Server_oxylabs_web_unblocker | Scrape url using Oxylabs Web Unblocker |
Vidu MCP Server_image-to-video | Generate a video from an image using Vidu API |
Vidu MCP Server_check-generation-status | Check the status of a video generation task |
Vidu MCP Server_upload-image | Upload an image to use with the Vidu API |
SketchupMCP_create_component | Create a new component in Sketchup |
SketchupMCP_delete_component | Delete a component by ID |
SketchupMCP_transform_component | Transform a component's position, rotation, or scale |
SketchupMCP_get_selection | Get currently selected components |
SketchupMCP_set_material | Set material for a component |
SketchupMCP_export_scene | Export the current scene |
SketchupMCP_create_mortise_tenon | Create a mortise and tenon joint between two components |
SketchupMCP_create_dovetail | Create a dovetail joint between two components |
SketchupMCP_create_finger_joint | Create a finger joint (box joint) between two components |
SketchupMCP_eval_ruby | Evaluate arbitrary Ruby code in Sketchup |
GitHub Actions MCP Server_list_workflows | List workflows in a GitHub repository |
GitHub Actions MCP Server_get_workflow | Get details of a specific workflow |
GitHub Actions MCP Server_get_workflow_usage | Get usage statistics of a workflow |
GitHub Actions MCP Server_list_workflow_runs | List all workflow runs for a repository or a specific workflow |
GitHub Actions MCP Server_get_workflow_run | Get details of a specific workflow run |
GitHub Actions MCP Server_get_workflow_run_jobs | Get jobs for a specific workflow run |
GitHub Actions MCP Server_trigger_workflow | Trigger a workflow run |
GitHub Actions MCP Server_cancel_workflow_run | Cancel a workflow run |
GitHub Actions MCP Server_rerun_workflow | Re-run a workflow run |
mcp-minecraft_move-to-position | Move the bot to a specific position |
mcp-minecraft_look-at | Make the bot look at a specific position |
mcp-minecraft_jump | Make the bot jump |
mcp-minecraft_get-position | Get the current position of the bot |
mcp-minecraft_move-in-direction | Move the bot in a specific direction for a duration |
mcp-minecraft_list-inventory | List all items in the bot's inventory |
mcp-minecraft_find-item | Find a specific item in the bot's inventory |
mcp-minecraft_equip-item | Equip a specific item |
mcp-minecraft_place-block | Place a block at the specified position |
mcp-minecraft_dig-block | Dig a block at the specified position |
mcp-minecraft_get-block-info | Get information about a block at the specified position |
mcp-minecraft_find-block | Find the nearest block of a specific type |
mcp-minecraft_find-entity | Find the nearest entity of a specific type |
mcp-minecraft_send-chat | Send a chat message in-game |
Bankless Onchain MCP Server_read_contract | Read contract state from a blockchain. important: |
Bankless Onchain MCP Server_get_proxy | Gets the proxy address for a given network and contract |
Bankless Onchain MCP Server_get_abi | Gets the ABI for a given contract on a specific network |
Bankless Onchain MCP Server_get_source | Gets the source code for a given contract on a specific network |
Bankless Onchain MCP Server_get_events | Fetches event logs for a given network and filter criteria |
Bankless Onchain MCP Server_build_event_topic | Builds an event topic signature based on event name and arguments |
Bankless Onchain MCP Server_get_transaction_history_for_user | Gets transaction history for a user and optional contract |
Bankless Onchain MCP Server_get_transaction_info | Gets detailed information about a specific transaction |
Bankless Onchain MCP Server_get_token_balances_on_network | Gets all token balances for a given address on a specific network |
Bankless Onchain MCP Server_get_block_info | Gets detailed information about a specific block by number or hash |
Map Traveler MCP_set_traveler_location | Set the traveler's current address |
Map Traveler MCP_tips | Inform you of recommended actions for your device |
EVM MCP Server_get_chain_info | Get information about an EVM network |
EVM MCP Server_resolve_ens | Resolve an ENS name to an Ethereum address |
EVM MCP Server_get_supported_networks | Get a list of supported EVM networks |
EVM MCP Server_get_block_by_number | Get a block by its block number |
EVM MCP Server_get_latest_block | Get the latest block from the EVM |
EVM MCP Server_get_balance | Get the native token balance (ETH, MATIC, etc.) for an address |
EVM MCP Server_get_erc20_balance | Get the ERC20 token balance of an Ethereum address |
EVM MCP Server_get_token_balance | Get the balance of an ERC20 token for an address |
EVM MCP Server_get_transaction | Get detailed information about a specific transaction by its hash. Includes sender, recipient, value, data, and more. |
EVM MCP Server_get_transaction_receipt | Get a transaction receipt by its hash |
EVM MCP Server_estimate_gas | Estimate the gas cost for a transaction |
EVM MCP Server_get_address_from_private_key | Get the EVM address derived from a private key |
EVM MCP Server_transfer_eth | Transfer native tokens (ETH, MATIC, etc.) to an address |
EVM MCP Server_transfer_erc20 | Transfer ERC20 tokens to another address |
EVM MCP Server_approve_token_spending | Approve another address (like a DeFi protocol or exchange) to spend your ERC20 tokens. This is often required before interacting with DeFi protocols. |
EVM MCP Server_transfer_nft | Transfer an NFT (ERC721 token) from one address to another. Requires the private key of the current owner for signing the transaction. |
EVM MCP Server_transfer_erc1155 | Transfer ERC1155 tokens to another address. ERC1155 is a multi-token standard that can represent both fungible and non-fungible tokens in a single contract. |
EVM MCP Server_transfer_token | Transfer ERC20 tokens to an address |
EVM MCP Server_read_contract | Read data from a smart contract by calling a view/pure function. This doesn't modify blockchain state and doesn't require gas or signing. |
EVM MCP Server_write_contract | Write data to a smart contract by calling a state-changing function. This modifies blockchain state and requires gas payment and transaction signing. |
EVM MCP Server_is_contract | Check if an address is a smart contract or an externally owned account (EOA) |
EVM MCP Server_get_token_info | Get comprehensive information about an ERC20 token including name, symbol, decimals, total supply, and other metadata. Use this to analyze any token on EVM chains. |
EVM MCP Server_get_token_balance_erc20 | Get ERC20 token balance for an address |
EVM MCP Server_get_nft_info | Get detailed information about a specific NFT (ERC721 token), including collection name, symbol, token URI, and current owner if available. |
EVM MCP Server_check_nft_ownership | Check if an address owns a specific NFT |
EVM MCP Server_get_erc1155_token_uri | Get the metadata URI for an ERC1155 token (multi-token standard used for both fungible and non-fungible tokens). The URI typically points to JSON metadata about the token. |
EVM MCP Server_get_nft_balance | Get the total number of NFTs owned by an address from a specific collection. This returns the count of NFTs, not individual token IDs. |
EVM MCP Server_get_erc1155_balance | Get the balance of a specific ERC1155 token ID owned by an address. ERC1155 allows multiple tokens of the same ID, so the balance can be greater than 1. |
MCP Kibela_kibela_search_notes | Search Kibela notes by query |
MCP Kibela_kibela_get_my_notes | Get my latest notes from Kibela |
MCP Kibela_kibela_get_note_content | Get note content by note ID |
MCP Kibela_kibela_get_note_from_path | Get note content by note path |
MCP Kibela_kibela_update_note_content | Update note content by note id. This tool allows you to modify the content of an existing Kibela note. Before updating, it fetches the current content of the note to ensure proper version control. Note that you need the note ID (not the note path) to use this tool. |
MCP Kibela_kibela_create_note | Create a new note in Kibela. |
Hologres MCP Server_execute_select_sql | Execute SELECT SQL to query data from Hologres database. |
Hologres MCP Server_execute_dml_sql | Execute (INSERT, UPDATE, DELETE) SQL to insert, update, and delete data in Hologres databse. |
Hologres MCP Server_execute_ddl_sql | Execute (CREATE, ALTER, DROP) SQL statements to CREATE, ALTER, or DROP tables, views, procedures, GUCs etc. in Hologres databse. |
Hologres MCP Server_gather_table_statistics | Execute the ANALYZE TABLE command to have Hologres collect table statistics, enabling QO to generate better query plans |
Hologres MCP Server_get_query_plan | Get query plan for a SQL query |
Hologres MCP Server_get_execution_plan | Get actual execution plan with runtime statistics for a SQL query |
Spotify MCP Server_searchSpotify | Search for tracks, albums, artists, or playlists on Spotify |
Spotify MCP Server_getNowPlaying | Get information about the currently playing track on Spotify |
Spotify MCP Server_getMyPlaylists | Get a list of the current user's playlists on Spotify |
Spotify MCP Server_getPlaylistTracks | Get a list of tracks in a Spotify playlist |
Spotify MCP Server_playMusic | Start playing a Spotify track, album, artist, or playlist |
Spotify MCP Server_pausePlayback | Pause Spotify playback on the active device |
Spotify MCP Server_skipToNext | Skip to the next track in the current Spotify playback queue |
Spotify MCP Server_skipToPrevious | Skip to the previous track in the current Spotify playback queue |
Spotify MCP Server_createPlaylist | Create a new playlist on Spotify |
Spotify MCP Server_addTracksToPlaylist | Add tracks to a Spotify playlist |
Spotify MCP Server_resumePlayback | Resume Spotify playback on the active device |
Spotify MCP Server_addToQueue | Adds a track, album, artist or playlist to the playback queue |
MCP Server for FTP Access_list-directory | List contents of an FTP directory |
MCP Server for FTP Access_download-file | Download a file from the FTP server |
MCP Server for FTP Access_upload-file | Upload a file to the FTP server |
MCP Server for FTP Access_create-directory | Create a new directory on the FTP server |
MCP Server for FTP Access_delete-file | Delete a file from the FTP server |
MCP Server for FTP Access_delete-directory | Delete a directory from the FTP server |
UseGrant MCP Server_get_provider | Get a provider by ID |
UseGrant MCP Server_list_providers | List all providers |
UseGrant MCP Server_create_provider | Create a new provider |
UseGrant MCP Server_delete_provider | Delete a provider |
UseGrant MCP Server_list_clients | List all clients |
UseGrant MCP Server_create_client | Create a new client for a provider |
UseGrant MCP Server_get_client | Get client details by provider and client ID |
UseGrant MCP Server_delete_client | Delete a client from a provider |
UseGrant MCP Server_list_domains | List all domains for a provider |
UseGrant MCP Server_add_domain | Add a domain to a provider |
UseGrant MCP Server_get_domain | Get a domain by provider and domain ID |
UseGrant MCP Server_delete_domain | Delete a domain from a provider |
UseGrant MCP Server_verify_domain | Verify a domain for a provider |
UseGrant MCP Server_create_access_token | Create a new access token for a client |
UseGrant MCP Server_list_tenants | List all tenants |
UseGrant MCP Server_create_tenant | Create a new tenant |
UseGrant MCP Server_get_tenant | Get a tenant by ID |
UseGrant MCP Server_delete_tenant | Delete a tenant |
UseGrant MCP Server_list_tenant_providers | List all providers for a tenant |
UseGrant MCP Server_create_tenant_provider | Create a new provider for a tenant |
UseGrant MCP Server_get_tenant_provider | Get a provider for a tenant |
UseGrant MCP Server_delete_tenant_provider | Delete a provider for a tenant |
UseGrant MCP Server_list_tenant_provider_policies | List all policies for a tenant provider |
UseGrant MCP Server_create_tenant_provider_policy | Create a new policy for a tenant provider |
UseGrant MCP Server_get_tenant_provider_policy | Get a policy for a tenant provider |
UseGrant MCP Server_delete_tenant_provider_policy | Delete a policy for a tenant provider |
Backlog MCP Server_backlog_get_projects | Performs list project get using the Backlog Projects get API. Supports pagination, content filtering. Maximum 20 results per request, with offset for pagination. |
Backlog MCP Server_backlog_get_project | Performs an project get using the Backlog Project get API. |
Backlog MCP Server_backlog_get_issues | Performs list issue get using the Backlog Issues API. Supports pagination, content filtering. Maximum 20 results per request, with offset for pagination. |
Backlog MCP Server_backlog_get_issue | Performs an issue get using the Backlog Issue API. |
Backlog MCP Server_backlog_add_issue | Add an issue using the Backlog Issue API. |
Backlog MCP Server_backlog_update_issue | Update an issue using the Backlog Issue API. |
Backlog MCP Server_backlog_delete_issue | Delete an issue using the Backlog Issue API. |
Backlog MCP Server_backlog_get_wikis | Performs list wikis get using the Backlog Wiki API |
Backlog MCP Server_backlog_get_wiki | Performs an wiki get using the Backlog Wiki API. |
Backlog MCP Server_backlog_add_wiki | Add an wiki using the Backlog Wiki API. |
Backlog MCP Server_backlog_update_wiki | Update an wiki using the Backlog Wiki API. |
Backlog MCP Server_backlog_delete_wiki | Delete an wiki using the Backlog Wiki API. |
WhatsApp MCP Server_open_session | Open a new WhatsApp session. |
WhatsApp MCP Server_send_message | |
WhatsApp MCP Server_get_chats | |
WhatsApp MCP Server_create_group | |
WhatsApp MCP Server_get_group_participants | |
MCP Ripgrep Server_search | Search files for patterns using ripgrep (rg) |
MCP Ripgrep Server_advanced-search | Advanced search with ripgrep with more options |
MCP Ripgrep Server_count-matches | Count matches in files using ripgrep |
MCP Ripgrep Server_list-files | List files that would be searched by ripgrep without actually searching them |
MCP Ripgrep Server_list-file-types | List all supported file types in ripgrep |
Cursor Talk To Figma MCP_set_text_content | Set the text content of an existing text node in Figma |
Cursor Talk To Figma MCP_get_document_info | Get detailed information about the current Figma document |
Cursor Talk To Figma MCP_get_selection | Get information about the current selection in Figma |
Cursor Talk To Figma MCP_get_node_info | Get detailed information about a specific node in Figma |
Cursor Talk To Figma MCP_create_rectangle | Create a new rectangle in Figma |
Cursor Talk To Figma MCP_join_channel | Join a specific channel to communicate with Figma |
Cursor Talk To Figma MCP_create_frame | Create a new frame in Figma |
Cursor Talk To Figma MCP_create_text | Create a new text element in Figma |
Cursor Talk To Figma MCP_set_fill_color | Set the fill color of a node in Figma can be TextNode or FrameNode |
Cursor Talk To Figma MCP_set_stroke_color | Set the stroke color of a node in Figma |
Cursor Talk To Figma MCP_move_node | Move a node to a new position in Figma |
Cursor Talk To Figma MCP_clone_node | Clone an existing node in Figma |
Cursor Talk To Figma MCP_resize_node | Resize a node in Figma |
Cursor Talk To Figma MCP_delete_node | Delete a node from Figma |
Cursor Talk To Figma MCP_get_styles | Get all styles from the current Figma document |
Cursor Talk To Figma MCP_get_local_components | Get all local components from the Figma document |
Cursor Talk To Figma MCP_create_component_instance | Create an instance of a component in Figma |
Cursor Talk To Figma MCP_export_node_as_image | Export a node as an image from Figma |
Cursor Talk To Figma MCP_set_corner_radius | Set the corner radius of a node in Figma |
Sensei MCP_dojo_config | Essential guidance for configuring Dojo projects. Use this when setting up Scarb.toml, creating dojo profile files, configuring permissions, setting up namespaces, or managing external contracts and dependencies. |
Sensei MCP_dojo_101 | Beginner-friendly introduction to Dojo development. Use this when starting a new Dojo project, understanding the basic workflow, or when you need a high-level overview of the Dojo development process and architecture. |
Sensei MCP_dojo_logic | Expert guidance on implementing Dojo systems and game logic. Use this when writing contract functions, implementing game mechanics, handling state changes, or working with the World contract to read/write models. |
Sensei MCP_dojo_model | Specialized guidance for creating and working with Dojo models. Use this when you need to define data structures, create model schemas, implement model traits, or understand model relationships and constraints. |
Sensei MCP_dojo_sensei | The main system prompt for Dojo development. Use this as the primary prompt when starting a conversation about Dojo or Cairo development, or when you need comprehensive guidance across all aspects of Dojo development. |
Sensei MCP_dojo_test | Comprehensive guide for writing tests for Dojo applications. Use this when creating unit tests, integration tests, setting up test environments, or verifying the correctness of your Dojo systems and models. |
Sensei MCP_dojo_token | Detailed guidance on implementing token standards in Dojo. Use this when creating ERC20, ERC721, or ERC1155 tokens, implementing token functionality, or integrating tokens with your Dojo game. |
MCP Server Box_box_who_am_i | Get the current user's information. This is also useful to check the connection status. return: str: The current user's information. |
MCP Server Box_box_authorize_app_tool | Authorize the Box application. Start the Box app authorization process return: str: Message |
MCP Server Box_box_search_tool | Search for files in Box with the given query. Args: query (str): The query to search for. file_extensions (List[str]): The file extensions to search for, for example *.pdf content_types (List[SearchForContentContentTypes]): where to look for the information, possible values are: NAME DESCRIPTION, FILE_CONTENT, COMMENTS, TAG, ancestor_folder_ids (List[str]): The ancestor folder IDs to search in. return: str: The search results. |
MCP Server Box_box_read_tool | Read the text content of a file in Box. Args: file_id (str): The ID of the file to read. return: str: The text content of the file. |
MCP Server Box_box_ask_ai_tool | Ask box ai about a file in Box. Args: file_id (str): The ID of the file to read. prompt (str): The prompt to ask the AI. return: str: The text content of the file. |
MCP Server Box_box_search_folder_by_name | Locate a folder in Box by its name. Args: folder_name (str): The name of the folder to locate. return: str: The folder ID. |
MCP Server Box_box_ai_extract_data | " Extract data from a file in Box using AI. Args: file_id (str): The ID of the file to read. fields (str): The fields to extract from the file. return: str: The extracted data in a json string format. |
MCP Server Box_box_list_folder_content_by_folder_id | List the content of a folder in Box by its ID. Args: folder_id (str): The ID of the folder to list the content of. is_recursive (bool): Whether to list the content recursively. return: str: The content of the folder in a json string format, including the "id", "name", "type", and "description". |
anilist-mcp_favourite_studio | [Requires Login] Favourite or unfavourite a studio by its ID |
anilist-mcp_get_genres | Get all available genres on AniList |
anilist-mcp_get_media_tags | Get all available media tags on AniList |
anilist-mcp_get_site_statistics | Get AniList site statistics over the last seven days |
anilist-mcp_get_studio | Get information about a studio by its AniList ID or name |
anilist-mcp_delete_activity | [Requires Login] Delete the current authorized user's activity post |
anilist-mcp_get_activity | Get a specific AniList activity by its ID |
anilist-mcp_get_user_activity | Fetch activities from a user |
anilist-mcp_post_message_activity | [Requires Login] Post a new message activity or update an existing one |
anilist-mcp_post_text_activity | [Requires Login] Post a new text activity or update an existing one |
anilist-mcp_add_list_entry | [Requires Login] Add an entry to the authorized user's list |
anilist-mcp_get_user_anime_list | Get a user's anime list |
anilist-mcp_get_user_manga_list | Get a user's manga list |
anilist-mcp_remove_list_entry | [Requires Login] Remove an entry from the authorized user's list |
anilist-mcp_search_studio | Search for studios based on a query term |
anilist-mcp_update_list_entry | [Requires Login] Update an entry on the authorized user's list |
anilist-mcp_get_anime | Get detailed information about an anime by its AniList ID |
anilist-mcp_favourite_anime | [Requires Login] Favourite or unfavourite an anime by its ID |
anilist-mcp_favourite_manga | [Requires Login] Favourite or unfavourite a manga by its ID |
anilist-mcp_get_manga | Get detailed information about a manga by its AniList ID |
anilist-mcp_get_character | Get information about a character by their AniList ID |
anilist-mcp_favourite_character | [Requires Login] Favourite or unfavourite a character by its ID |
anilist-mcp_favourite_staff | [Requires Login] Favourite or unfavourite a staff member by their ID |
anilist-mcp_get_todays_birthday_characters | Get all characters whose birthday is today |
anilist-mcp_get_todays_birthday_staff | Get all staff members whose birthday is today |
anilist-mcp_get_staff | Get information about staff member by their AniList ID or name |
anilist-mcp_get_recommendation | Get an AniList recommendation by its ID |
anilist-mcp_get_recommendations_for_media | Get AniList recommendations for a specific media |
anilist-mcp_search_activity | Search for activities on AniList |
anilist-mcp_search_anime | Search for anime with query term and filters |
anilist-mcp_search_character | Search for characters based on a query term |
anilist-mcp_search_manga | Search for manga with query term and filters |
anilist-mcp_search_staff | Search for staff members based on a query term |
anilist-mcp_search_user | Search for users on AniList |
anilist-mcp_delete_thread | [Requires Login] Delete a thread by its ID |
anilist-mcp_get_thread | Get a specific thread by its AniList ID |
anilist-mcp_get_thread_comments | Get comments for a specific thread |
anilist-mcp_get_full_user_info | Get a user's complete profile and stats information |
anilist-mcp_follow_user | [Requires Login] Follow or unfollow a user by their ID |
anilist-mcp_get_authorized_user | [Requires Login] Get profile information of the currently authorized user |
anilist-mcp_get_user_recent_activity | Get recent activity from a user |
anilist-mcp_get_user_profile | Get a user's AniList profile |
anilist-mcp_get_user_stats | Get a user's AniList statistics |
anilist-mcp_update_user | [Requires Login] Update user settings |
agentek-eth_resolveENS | Resolves an ENS name to an Ethereum address |
agentek-eth_lookupENS | Looks up the ENS name for an Ethereum address |
agentek-eth_getAllowance | Gets the ERC20 token allowance between an owner and spender |
agentek-eth_getBalanceOf | Gets the ERC20 token balance of an address |
agentek-eth_getTotalSupply | Gets the total supply of an ERC20 token |
agentek-eth_getDecimals | Gets the number of decimals of an ERC20 token |
agentek-eth_getName | Gets the name of an ERC20 token |
agentek-eth_getSymbol | Gets the symbol of an ERC20 token |
agentek-eth_getTokenMetadata | Gets all metadata (name, symbol, decimals, totalSupply) of an ERC20 token |
agentek-eth_intentApprove | Creates an intent to approve token spending |
agentek-eth_getAcrossFeeQuote | Fetches a suggested fee quote for a cross-chain asset bridge using the Across Protocol REST API. |
agentek-eth_intentDepositAcross | Deposits tokens into the Across Protocol bridge to initiate a cross-chain transfer. |
agentek-eth_intentTransfer | Creates an intent to transfer tokens |
agentek-eth_intentTransferFrom | Creates an intent to transfer tokens from another address |
agentek-eth_getLatestTokens | Get trending tokens and market data |
agentek-eth_getBalance | Get the ETH balance for an address |
agentek-eth_getCode | Get the bytecode of an address |
agentek-eth_getTransactionCount | Get the number of transactions sent from an address |
agentek-eth_getBlock | Get information about a block |
agentek-eth_getBlockNumber | Get the current block number |
agentek-eth_getGasPrice | Get the current gas price. If chainId is not specified, will return gas price for all supported chains. |
agentek-eth_estimateGas | Estimate gas for a transaction |
agentek-eth_getFeeHistory | Get historical gas fee info |
agentek-eth_getTransaction | Get details about a transaction |
agentek-eth_getTransactionReceipt | Get the receipt of a transaction |
agentek-eth_getUniV3Pool | Gets information about a Uniswap V3 pool |
agentek-eth_getUserPositions | Gets all Uniswap V3 positions for a user |
agentek-eth_getPoolFeeData | Gets fee-related data for a pool |
agentek-eth_getPositionDetails | Gets detailed information about a specific LP position |
agentek-eth_intentMintPosition | Creates a new Uniswap V3 liquidity position |
agentek-eth_intentIncreaseLiquidity | Adds more liquidity to an existing Uniswap V3 position |
agentek-eth_intentDecreaseLiquidity | Removes liquidity from a Uniswap V3 position |
agentek-eth_intentCollectFees | Collects accumulated fees from a Uniswap V3 position |
agentek-eth_intentTransferPosition | Transfers ownership of a Uniswap V3 LP NFT |
agentek-eth_depositWETH | Deposit ETH into the WETH contract, receiving WETH in return |
agentek-eth_withdrawWETH | Withdraw WETH back to native ETH |
agentek-eth_getNaniProposals | Get proposals for NANIDAO |
agentek-eth_intentStakeNani | Stake NANI tokens to receive xNANI tokens, which can be used for governance |
agentek-eth_intentUnstakeNani | Unstake xNANI tokens back to NANI tokens |
agentek-eth_intentProposeNani | Create a new governance proposal for NANIDAO |
agentek-eth_intentVoteNaniProposal | Vote on an existing NANIDAO governance proposal |
agentek-eth_getNativeCoinHolders | Get native coin holders list |
agentek-eth_getAddressInfo | Get information about a specific address |
agentek-eth_getAddressCounters | Get counters for a specific address |
agentek-eth_getAddressTransactions | Get transactions for a specific address |
agentek-eth_getAddressTokenTransfers | Get token transfers for a specific address |
agentek-eth_getAddressInternalTransactions | Get internal transactions for a specific address |
agentek-eth_getAddressLogs | Get logs for a specific address |
agentek-eth_getAddressBlocksValidated | Get blocks validated by a specific address |
agentek-eth_getAddressTokenBalances | Get all token balances for a specific address |
agentek-eth_getAddressTokens | Get token balances with filtering and pagination |
agentek-eth_getAddressCoinBalanceHistory | Get address coin balance history |
agentek-eth_getAddressCoinBalanceHistoryByDay | Get address coin balance history by day |
agentek-eth_getAddressWithdrawals | Get withdrawals for a specific address |
agentek-eth_getAddressNFTs | Get list of NFTs owned by address |
agentek-eth_getAddressNFTCollections | Get list of NFTs owned by address, grouped by collection |
agentek-eth_getBlockInfo | Get information about a specific block |
agentek-eth_getBlockTransactions | Get transactions within a specific block |
agentek-eth_getBlockWithdrawals | Get withdrawals within a specific block |
agentek-eth_getStats | Get statistics for various blockchain metrics. |
agentek-eth_getTransactionsChart | Retrieve daily transaction statistics chart data. |
agentek-eth_getTransactionInfo | Retrieve detailed information for a given transaction hash. |
agentek-eth_getTransactionTokenTransfers | Retrieve all token transfers that occurred within a given transaction. |
agentek-eth_getTransactionInternalTransactions | Retrieve internal transactions that occurred within a given transaction. |
agentek-eth_tallyUserDaos | Fetch all DAOs a user is a member of from the Tally governance API. |
agentek-eth_getTransactionLogs | Retrieve logs that were generated from a specific transaction. |
agentek-eth_getTransactionRawTrace | Retrieve raw trace information for a specific transaction. |
agentek-eth_getTransactionStateChanges | Retrieve state changes that occurred during a transaction. |
agentek-eth_getTransactionSummary | Retrieve a summary of data related to a transaction. |
agentek-eth_getSmartContracts | Get smart contract for the query |
agentek-eth_getSmartContract | Retrieve the source code, ABI and metadata a contract. |
agentek-eth_getTokenInfo | Fetch metadata for a token contract. |
agentek-eth_getTokenHolders | Retrieve token holders and their balances for a given token. |
agentek-eth_getTokenTransfers | List transfers for a specific token contract with pagination support. |
agentek-eth_getBlockscoutSearch | Perform a search query to find blocks, transactions, addresses, or tokens on the blockchain. |
agentek-eth_getAaveUserData | Fetches Aave user data including total collateral, total debt, available borrowing power, current liquidation threshold, LTV, and health factor. |
agentek-eth_getAaveReserveData | Fetches reserve data for a given asset from Aave including available liquidity, total stable and variable debt, and interest rates. |
agentek-eth_intentAaveDeposit | Deposits tokens into the Aave protocol to supply liquidity and earn interest. |
agentek-eth_intentAaveWithdraw | Withdraws tokens from Aave, redeeming your supplied assets (aTokens). |
agentek-eth_intentAaveBorrow | Borrows tokens from Aave using your supplied collateral. By default, the variable rate mode (2) is used. |
agentek-eth_intentAaveRepay | Repays your Aave debt. By default, the variable rate mode (2) is used for repayment. |
agentek-eth_checkMaliciousAddress | Check if an Ethereum address has been associated with malicious activity |
agentek-eth_checkMaliciousWebsite | Check if a website has been associated with crypto scams or malicious activity |
agentek-eth_scrapeWebContent | Given a URL, fetch the page's HTML and return the main text content as accurately as possible. Works for most websites. |
agentek-eth_getFearAndGreedIndex | Retrieves the current Fear and Greed Index value from Alternative.me API. |
agentek-eth_getSlowStatus | Get information about tokens, unlocked balances, and pending transfers in SLOW |
agentek-eth_predictTransferId | Predict a transfer ID for a potential transfer |
agentek-eth_canUnlockSlow | Check if a transfer can be unlocked and get info about it |
agentek-eth_getCanReverseSlowTransfer | Check if a transfer can be reversed |
agentek-eth_getSlowGuardianInfo | Get guardian information for a user |
agentek-eth_getSlowTransferApprovalRequired | Check if a transfer needs guardian approval |
agentek-eth_intentDepositToSlow | Deposit tokens or ETH into SLOW contract with a timelock |
agentek-eth_intentSetSlowGuardian | Set a guardian for a user in the SLOW contract |
agentek-eth_intentWithdrawFromSlow | Withdraw unlocked tokens from SLOW contract |
agentek-eth_intentApproveSlowTransfer | Guardian approves a transfer in SLOW contract |
agentek-eth_intentUnlockSlow | Unlock a time-locked transfer in SLOW contract |
agentek-eth_intentReverseSlowTransfer | Reverse a pending transfer in SLOW contract |
agentek-eth_getNFTMetadata | Gets metadata for an NFT token by contract address and token ID |
agentek-eth_getCryptoPrice | Get the current price of a cryptocurrency in USD |
agentek-eth_estimateGasCost | Estimate the gas cost for a transaction in both native token and USD |
agentek-eth_getTokenChart | Gets historical price chart data for one or more tokens from DeFi Llama |
agentek-eth_getYieldTool | Analyzes and compares yield opportunities from DefiLlama across all DeFi protocols |
agentek-eth_compareYieldTool | Compares yield opportunities for specific assets across different protocols |
agentek-eth_getYieldHistoryTool | Fetches and analyzes historical yield data for a specific pool from DefiLlama |
agentek-eth_compareYieldHistoryTool | Compares historical yield performance across multiple pools, analyzing metrics like APY, volatility, and TVL trends |
agentek-eth_think | Use the tool to think about something. It will not obtain new information or change the database, but just append the thought to the log. Use it when complex reasoning or some cache memory is needed. |
agentek-eth_askPerplexitySearch | Ask perplexity search |
agentek-eth_tallyProposals | Fetch proposals from the Tally governance API for a specified DAO/space. |
agentek-eth_tallyChains | Fetch all chains supported by the Tally governance API. |
agentek-eth_intentGovernorVote | Creates an intent to vote on a Governor bravo proposal |
agentek-eth_intentGovernorVoteWithReason | Creates an intent to vote on a Governor bravo proposal with a reason |
agentek-eth_getLatestCoindeskNewsTool | Calls the Coindesk API to retrieve the latest news articles. Parameter 'limit' allows specification of how many articles to fetch (defaults to 10). |
agentek-eth_getMarketEvents | Fetches cryptocurrency market events from CoinMarketCal. Supports filtering by coins, categories, date ranges, and various sorting options. |
mcp-turso-cloud_list_databases | List all databases in your Turso organization |
mcp-turso-cloud_create_database | Create a new database in your Turso organization |
mcp-turso-cloud_delete_database | Delete a database from your Turso organization |
mcp-turso-cloud_generate_database_token | Generate a new token for a specific database |
mcp-turso-cloud_list_tables | Lists all tables in a database |
mcp-turso-cloud_execute_query | Executes a SQL query against a database |
mcp-turso-cloud_describe_table | Gets schema information for a table |
mcp-turso-cloud_vector_search | Performs vector similarity search |
Mindmap MCP Server_convert_markdown_to_mindmap | Convert Markdown content to a mindmap mind map. |
Pica MCP Server_list_connections | List all available active connections in the user's Pica account |
Pica MCP Server_get_available_actions | Get available actions for a specific platform |
Pica MCP Server_get_action_knowledge | Get detailed information about a specific action |
Pica MCP Server_execute_action | Prepare to execute a specific action (requires confirmation) |
notion-mcp-server_create_page | Create a new page in Notion |
notion-mcp-server_archive_page | Archive (trash) a Notion page |
notion-mcp-server_restore_page | Restore a previously archived Notion page |
notion-mcp-server_search_pages | Search for pages and databases in Notion by title |
notion-mcp-server_append_block_children | Append child blocks to a parent block in Notion |
notion-mcp-server_retrieve_block | Retrieve a block from Notion by ID |
notion-mcp-server_retrieve_block_children | Retrieve the children of a block from Notion |
notion-mcp-server_update_block | Update a block's content in Notion |
notion-mcp-server_delete_block | Delete (move to trash) a block in Notion |
notion-mcp-server_batch_append_block_children | Append children to multiple blocks in a single operation |
notion-mcp-server_batch_update_blocks | Update multiple blocks in a single operation |
notion-mcp-server_batch_delete_blocks | Delete multiple blocks in a single operation |
notion-mcp-server_batch_mixed_operations | Perform a mix of append, update, and delete operations in a single request |
mcp-server-code-runner_run-code | Run code snippet and return the result. |
mcp-octagon_octagon-sec-agent | [PUBLIC MARKET INTELLIGENCE] A specialized agent for SEC filings analysis and financial data extraction. Covers over 8,000 public companies from SEC EDGAR with comprehensive coverage of financial statements from annual and quarterly reports (10-K, 10-Q, 20-F), offering filings (S-1), amendments, and event filings (8-K). Updated daily with historical data dating back to 2018 for time-series analysis. Best for extracting financial and segment metrics, management discussion, footnotes, risk factors, and quantitative data from SEC filings. Example queries: 'What was Apple's R&D expense as a percentage of revenue in their latest fiscal year?', 'Find the risk factors related to supply chain in Tesla's latest 10-K', 'Extract quarterly revenue growth rates for Microsoft over the past 2 years'. |
mcp-octagon_octagon-transcripts-agent | [PUBLIC MARKET INTELLIGENCE] A specialized agent for analyzing earnings call transcripts and management commentary. Covers over 8,000 public companies with continuous daily updates for real-time insights. Historical data dating back to 2018 enables robust time-series analysis. Extract information from earnings call transcripts, including executive statements, financial guidance, analyst questions, and forward-looking statements. Best for analyzing management sentiment, extracting guidance figures, and identifying key business trends. Example queries: 'What did Amazon's CEO say about AWS growth expectations in the latest earnings call?', 'Summarize key financial metrics mentioned in Tesla's Q2 2023 earnings call', 'What questions did analysts ask about margins during Netflix's latest earnings call?'. |
mcp-octagon_octagon-financials-agent | [PUBLIC MARKET INTELLIGENCE] Specialized agent for financial statement analysis and ratio calculations. Capabilities: Analyze financial statements, calculate financial metrics, compare ratios, and evaluate performance indicators. Best for: Deep financial analysis and comparison of company financial performance. Example queries: 'Compare the gross margins, operating margins, and net margins of Apple, Microsoft, and Google over the last 3 years', 'Analyze Tesla's cash flow statements from 2021 to 2023 and calculate free cash flow trends', 'Calculate and explain key financial ratios for Amazon including P/E, EV/EBITDA, and ROIC'. |
mcp-octagon_octagon-stock-data-agent | [PUBLIC MARKET INTELLIGENCE] Specialized agent for stock market data and equity investment analysis. Capabilities: Analyze stock price movements, trading volumes, market trends, valuation metrics, and technical indicators. Best for: Stock market research, equity analysis, and trading pattern identification. Example queries: 'How has Apple's stock performed compared to the S&P 500 over the last 6 months?', 'Analyze the trading volume patterns for Tesla stock before and after earnings releases', 'What were the major price movements for NVIDIA in 2023 and what were the catalysts?'. |
mcp-octagon_octagon-companies-agent | [PRIVATE MARKET INTELLIGENCE] A specialized database agent for looking up company information and financials. Capabilities: Query comprehensive company financial information and business intelligence from Octagon's company database. Best for: Finding basic information about companies, their financial metrics, and industry benchmarks. NOTE: For better and more accurate results, provide the company's website URL instead of just the company name. Example queries: 'What is the employee trends for Stripe (stripe.com)?', 'List the top 5 companies in the AI sector by revenue growth', 'Who are the top competitors to Databricks (databricks.com)?'. |
mcp-octagon_octagon-funding-agent | [PRIVATE MARKET INTELLIGENCE] A specialized database agent for company funding transactions and venture capital research. Capabilities: Extract information about funding rounds, investors, valuations, and investment trends. Best for: Researching startup funding history, investor activity, and venture capital patterns. NOTE: For better and more accurate results, provide the company's website URL instead of just the company name. Example queries: 'What was Anthropic's latest funding round size, valuation, and key investors (anthropic.com)?', 'How much has OpenAI raised in total funding and at what valuation (openai.com)?', 'Who were the lead investors in Databricks' Series G round and what was the post-money valuation (databricks.com)?'. |
mcp-octagon_octagon-deals-agent | [PRIVATE MARKET INTELLIGENCE] A specialized database agent for M&A and IPO transaction analysis. Capabilities: Retrieve information about mergers, acquisitions, initial public offerings, and other financial transactions. Best for: Research on corporate transactions, IPO valuations, and M&A activity. NOTE: For better and more accurate results, provide the company's website URL instead of just the company name. Example queries: 'What was the acquisition price when Microsoft (microsoft.com) acquired GitHub (github.com)?', 'List the valuation multiples for AI companies in 2024', 'List all the acquisitions and price, valuation by Salesforce (salesforce.com) in 2023?'. |
mcp-octagon_octagon-investors-agent | [PRIVATE MARKET INTELLIGENCE] A specialized database agent for looking up information on investors. Capabilities: Retrieve information about investors, their investment criteria, and past activities. Best for: Research on investors and details about their investment activities. NOTE: For better and more accurate results, provide the investor's website URL instead of just the investor name. Example queries: 'What is the latest investment criteria of Insight Partners (insightpartners.com)?', 'How many investments did Andreessen Horowitz (a16z.com) make in the last 6 months', 'What is the typical check size for QED Investors (qedinvestors.com)'. |
mcp-octagon_octagon-scraper-agent | [PUBLIC & PRIVATE MARKET INTELLIGENCE] Specialized agent for financial data extraction from investor websites. Capabilities: Extract structured financial data from investor relations websites, tables, and online financial sources. Best for: Gathering financial data from websites that don't have accessible APIs. Example queries: 'Extract all data fields from zillow.com/san-francisco-ca/', 'Extract all data fields from www.carvana.com/cars/'. |
mcp-octagon_octagon-deep-research-agent | [PUBLIC & PRIVATE MARKET INTELLIGENCE] A comprehensive agent that can utilize multiple sources for deep research analysis. Capabilities: Aggregate research across multiple data sources, synthesize information, and provide comprehensive investment research. Best for: Investment research questions requiring up-to-date aggregated information from the web. Example queries: 'Research the financial impact of Apple's privacy changes on digital advertising companies' revenue and margins', 'Analyze the competitive landscape in the cloud computing sector, focusing on AWS, Azure, and Google Cloud margin and growth trends', 'Investigate the factors driving electric vehicle adoption and their impact on battery supplier financials'. |
mcp-octagon_octagon-debts-agent | [PRIVATE MARKET INTELLIGENCE] A specialized database agent for analyzing private debts and lenders. Capabilities: Retrieve information about private debts and lenders. Best for: Research on borrowers, and lenders and details about the private debt facilities. Example queries: 'List all the debt activities from borrower American Tower', 'Compile all the debt activities from lender ING Group in Q4 2024'. |
Scrapybara MCP_start_instance | Start a Scrapybara Ubuntu instance. Use it as a desktop sandbox to access the web or run code. Always present the stream URL to the user afterwards so they can watch the instance in real time. |
Scrapybara MCP_get_instances | Get all running Scrapybara instances. |
Scrapybara MCP_stop_instance | Stop a running Scrapybara instance. |
Scrapybara MCP_bash | Run a bash command in a Scrapybara instance. |
Scrapybara MCP_act | Take action on a Scrapybara instance through an agent. The agent can control the instance with mouse/keyboard and bash commands. |
Flutter Inspector MCP Server_get_active_ports | Utility: Get list of ports where Flutter/Dart processes are listening. This is a local utility, not a Flutter RPC method. |
Flutter Inspector MCP Server_get_supported_protocols | Utility: Get supported protocols from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_get_vm_info | Utility: Get VM information from a Flutter app. This is a VM service method, not a Flutter RPC. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_get_extension_rpcs | Utility: List all available extension RPCs in the Flutter app. This is a helper tool for discovering available methods. |
Flutter Inspector MCP Server_debug_disable_opacity_layers | RPC: Toggle opacity layers debugging (ext.flutter.debugDisableOpacityLayers). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_debug_dump_render_tree | RPC: Dump the render tree (ext.flutter.debugDumpRenderTree). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_debug_dump_layer_tree | RPC: Dump the layer tree (ext.flutter.debugDumpLayerTree). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_debug_dump_semantics_tree | RPC: Dump the semantics tree (ext.flutter.debugDumpSemanticsTreeInTraversalOrder). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_debug_dump_semantics_tree_inverse | RPC: Dump the semantics tree in inverse hit test order (ext.flutter.debugDumpSemanticsTreeInInverseHitTestOrder) |
Flutter Inspector MCP Server_debug_paint_baselines_enabled | RPC: Toggle baseline paint debugging (ext.flutter.debugPaintBaselinesEnabled). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_debug_dump_focus_tree | RPC: Dump the focus tree (ext.flutter.debugDumpFocusTree) |
Flutter Inspector MCP Server_debug_disable_physical_shape_layers | RPC: Toggle physical shape layers debugging (ext.flutter.debugDisablePhysicalShapeLayers) |
Flutter Inspector MCP Server_inspector_screenshot | RPC: Take a screenshot of the Flutter app (ext.flutter.inspector.screenshot). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_get_layout_explorer_node | RPC: Get layout explorer information for a widget (ext.flutter.inspector.getLayoutExplorerNode). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_track_rebuild_dirty_widgets | RPC: Track widget rebuilds to identify performance issues (ext.flutter.inspector.trackRebuildDirtyWidgets). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_set_selection_by_id | RPC: Set the selected widget by ID (ext.flutter.inspector.setSelectionById). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_get_parent_chain | RPC: Get the parent chain for a widget (ext.flutter.inspector.getParentChain). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_get_children_summary_tree | RPC: Get the children summary tree for a widget (ext.flutter.inspector.getChildrenSummaryTree). Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_get_children_details_subtree | RPC: Get the children details subtree for a widget (ext.flutter.inspector.getChildrenDetailsSubtree) |
Flutter Inspector MCP Server_inspector_get_root_widget_summary_tree | RPC: Get the root widget summary tree (ext.flutter.inspector.getRootWidgetSummaryTree) |
Flutter Inspector MCP Server_inspector_get_root_widget_summary_tree_with_previews | RPC: Get the root widget summary tree with previews from the Flutter app. This provides a hierarchical view of the widget tree with preview information. |
Flutter Inspector MCP Server_inspector_get_details_subtree | RPC: Get the details subtree for a widget. This provides detailed information about the widget and its descendants. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_get_selected_widget | RPC: Get information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_get_selected_summary_widget | RPC: Get summary information about the currently selected widget in the Flutter app. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_inspector_is_widget_creation_tracked | RPC: Check if widget creation tracking is enabled in the Flutter app. |
Flutter Inspector MCP Server_dart_io_socket_profiling_enabled | RPC: Enable or disable socket profiling. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_dart_io_http_enable_timeline_logging | RPC: Enable or disable HTTP timeline logging. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_dart_io_get_version | RPC: Get Flutter version information (ext.dart.io.getVersion) |
Flutter Inspector MCP Server_dart_io_get_open_files | RPC: Get list of currently open files in the Flutter app |
Flutter Inspector MCP Server_dart_io_get_open_file_by_id | RPC: Get details of a specific open file by its ID |
Flutter Inspector MCP Server_stream_listen | RPC: Subscribe to a Flutter event stream. This is a VM service method for event monitoring. Connects to the default Flutter debug port (8181) unless specified otherwise. |
Flutter Inspector MCP Server_dart_io_get_http_profile_request | RPC: Get details of a specific HTTP request from the profile |
Flutter Inspector MCP Server_flutter_core_invert_oversized_images | RPC: Toggle inverting of oversized images for debugging |
Flutter Inspector MCP Server_debug_allow_banner | RPC: Toggle the debug banner in the Flutter app |
Flutter Inspector MCP Server_flutter_core_did_send_first_frame_event | RPC: Check if the first frame event has been sent |
Flutter Inspector MCP Server_flutter_core_did_send_first_frame_rasterized_event | RPC: Check if the first frame has been rasterized |
Flutter Inspector MCP Server_flutter_core_platform_override | RPC: Override the platform for the Flutter app |
Flutter Inspector MCP Server_flutter_core_brightness_override | RPC: Override the brightness for the Flutter app |
Flutter Inspector MCP Server_flutter_core_time_dilation | RPC: Set the time dilation factor for animations in the Flutter app |
Flutter Inspector MCP Server_flutter_core_evict | RPC: Evict an asset from the Flutter app's cache |
Flutter Inspector MCP Server_flutter_core_profile_platform_channels | RPC: Enable or disable profiling of platform channels |
Flutter Inspector MCP Server_debug_disable_clip_layers | RPC: Toggle disabling of clip layers in the Flutter app |
HackMD MCP Server_list_team_notes | List all notes in a team |
HackMD MCP Server_get_user_info | Get information about the authenticated user |
HackMD MCP Server_list_user_notes | List all notes owned by the user |
HackMD MCP Server_get_note | Get a note by its ID |
HackMD MCP Server_create_note | Create a new note |
HackMD MCP Server_update_note | Update an existing note |
HackMD MCP Server_delete_note | Delete a note |
HackMD MCP Server_get_history | Get user's reading history |
HackMD MCP Server_list_teams | List all teams accessible to the user |
HackMD MCP Server_create_team_note | Create a new note in a team |
HackMD MCP Server_update_team_note | Update an existing note in a team |
HackMD MCP Server_delete_team_note | Delete a note in a team |
Talk to Figma MCP_clone_node | Clone an existing node in Figma |
Talk to Figma MCP_get_document_info | Get detailed information about the current Figma document |
Talk to Figma MCP_get_selection | Get information about the current selection in Figma |
Talk to Figma MCP_get_node_info | Get detailed information about a specific node in Figma |
Talk to Figma MCP_create_rectangle | Create a new rectangle in Figma |
Talk to Figma MCP_create_frame | Create a new frame in Figma |
Talk to Figma MCP_create_text | Create a new text element in Figma |
Talk to Figma MCP_set_fill_color | Set the fill color of a node in Figma can be TextNode or FrameNode |
Talk to Figma MCP_set_stroke_color | Set the stroke color of a node in Figma |
Talk to Figma MCP_move_node | Move a node to a new position in Figma |
Talk to Figma MCP_resize_node | Resize a node in Figma |
Talk to Figma MCP_delete_node | Delete a node from Figma |
Talk to Figma MCP_get_styles | Get all styles from the current Figma document |
Talk to Figma MCP_get_local_components | Get all local components from the Figma document |
Talk to Figma MCP_create_component_instance | Create an instance of a component in Figma |
Talk to Figma MCP_export_node_as_image | Export a node as an image from Figma |
Talk to Figma MCP_set_corner_radius | Set the corner radius of a node in Figma |
Talk to Figma MCP_set_text_content | Set the text content of an existing text node in Figma |
Talk to Figma MCP_join_channel | Join a specific channel to communicate with Figma |
gitlab-mcp-server_get_project_wiki_page | Get a specific wiki page for a GitLab project |
gitlab-mcp-server_get_group_wiki_page | Get a specific wiki page for a GitLab group |
gitlab-mcp-server_create_project_wiki_page | Create a new wiki page for a GitLab project |
gitlab-mcp-server_create_group_wiki_page | Create a new wiki page for a GitLab group |
gitlab-mcp-server_edit_group_wiki_page | Edit an existing wiki page for a GitLab group |
gitlab-mcp-server_delete_group_wiki_page | Delete a wiki page from a GitLab group |
gitlab-mcp-server_upload_group_wiki_attachment | Upload an attachment to a GitLab group wiki |
gitlab-mcp-server_list_project_members | List all members of a GitLab project (including inherited members) |
gitlab-mcp-server_list_group_members | List all members of a GitLab group (including inherited members) |
gitlab-mcp-server_upload_project_wiki_attachment | Upload an attachment to a GitLab project wiki |
gitlab-mcp-server_list_group_wiki_pages | List all wiki pages for a GitLab group |
gitlab-mcp-server_create_or_update_file | Create or update a single file in a GitLab project |
gitlab-mcp-server_search_repositories | Search for GitLab projects |
gitlab-mcp-server_create_repository | Create a new GitLab project |
gitlab-mcp-server_get_file_contents | Get the contents of a file or directory from a GitLab project |
gitlab-mcp-server_push_files | Push multiple files to a GitLab project in a single commit |
gitlab-mcp-server_create_issue | Create a new issue in a GitLab project |
gitlab-mcp-server_create_merge_request | Create a new merge request in a GitLab project |
gitlab-mcp-server_fork_repository | Fork a GitLab project to your account or specified namespace |
gitlab-mcp-server_create_branch | Create a new branch in a GitLab project |
gitlab-mcp-server_list_group_projects | List all projects (repositories) within a specific GitLab group |
gitlab-mcp-server_get_project_events | Get recent events/activities for a GitLab project |
gitlab-mcp-server_list_commits | Get commit history for a GitLab project |
gitlab-mcp-server_list_issues | Get issues for a GitLab project |
gitlab-mcp-server_list_merge_requests | Get merge requests for a GitLab project |
gitlab-mcp-server_list_project_wiki_pages | List all wiki pages for a GitLab project |
gitlab-mcp-server_edit_project_wiki_page | Edit an existing wiki page for a GitLab project |
gitlab-mcp-server_delete_project_wiki_page | Delete a wiki page from a GitLab project |
BSC MCP Server_securityCheck | Check security of BSC tokens |
BSC MCP Server_transferNativeToken | Transfer native token (BNB) |
BSC MCP Server_transferBEP20Token | Transfer BEP-20 token by symbol or address |
BSC MCP Server_pancakeSwap | Swap tokens in BSC chain via PancakeSwap |
BSC MCP Server_getWalletInfo | Get wallet info for an address |
BSC MCP Server_createFourMeme | create new meme token on four.meme |
BSC MCP Server_createBEP20Token | create bep20 token |
BSC MCP Server_buyMemeToken | buy meme token |
BSC MCP Server_sellMemeToken | sell meme token |
BSC MCP Server_pancakeAddLiquidity | add liquidity to pancake |
BSC MCP Server_pancakeMyPosition | check my liquidity position on panceke |
BSC MCP Server_pancakeRemovePosition | remove liquidity position on panceke |
3D-MCP_getProperty | Get a property value from an object |
3D-MCP_getIKChains | Get multiple IKChains by IDs |
3D-MCP_getDrivers | Get multiple Drivers by IDs |
3D-MCP_listDrivers | List all Drivers |
3D-MCP_query | Query entities based on criteria |
3D-MCP_undo | Undo the last operation |
3D-MCP_redo | Redo the previously undone operation |
3D-MCP_rename | Rename an entity |
3D-MCP_setMetadata | Set metadata on an entity |
3D-MCP_getMetadata | Get metadata from an entity |
3D-MCP_createKeyframes | Create multiple Keyframes |
3D-MCP_getKeyframes | Get multiple Keyframes by IDs |
3D-MCP_listKeyframes | List all Keyframes |
3D-MCP_updateKeyframes | Update multiple Keyframes in a single operation |
3D-MCP_deleteKeyframes | Delete multiple Keyframes |
3D-MCP_createChannels | Create multiple Channels |
3D-MCP_getChannels | Get multiple Channels by IDs |
3D-MCP_listChannels | List all Channels |
3D-MCP_getChildren | Get all children of an object |
3D-MCP_updateChannels | Update multiple Channels in a single operation |
3D-MCP_deleteChannels | Delete multiple Channels |
3D-MCP_createClips | Create multiple Clips |
3D-MCP_getClips | Get multiple Clips by IDs |
3D-MCP_listClips | List all Clips |
3D-MCP_updateClips | Update multiple Clips in a single operation |
3D-MCP_deleteClips | Delete multiple Clips |
3D-MCP_createLayers | Create multiple Layers |
3D-MCP_getLayers | Get multiple Layers by IDs |
3D-MCP_listLayers | List all Layers |
3D-MCP_batchSetProperty | Set properties on multiple objects |
3D-MCP_updateLayers | Update multiple Layers in a single operation |
3D-MCP_deleteLayers | Delete multiple Layers |
3D-MCP_createDrivers | Create multiple Drivers |
3D-MCP_updateDrivers | Update multiple Drivers in a single operation |
3D-MCP_deleteDrivers | Delete multiple Drivers |
3D-MCP_test | Test tool |
3D-MCP_select | Select one or more objects |
3D-MCP_clearSelection | Clear current selection |
3D-MCP_getSelection | Get currently selected objects |
3D-MCP_batchTransform | Apply transformations to multiple objects |
3D-MCP_batchSetParent | Set parent for multiple objects |
3D-MCP_batchGetProperty | Get property values from multiple objects |
3D-MCP_duplicate | Duplicate an entity |
3D-MCP_createMeshs | Create multiple Meshs |
3D-MCP_getMeshs | Get multiple Meshs by IDs |
3D-MCP_listMeshs | List all Meshs |
3D-MCP_updateMeshs | Update multiple Meshs in a single operation |
3D-MCP_deleteMeshs | Delete multiple Meshs |
3D-MCP_createVertexs | Create multiple Vertexs |
3D-MCP_getVertexs | Get multiple Vertexs by IDs |
3D-MCP_listVertexs | List all Vertexs |
3D-MCP_listIKChains | List all IKChains |
3D-MCP_updateVertexs | Update multiple Vertexs in a single operation |
3D-MCP_deleteVertexs | Delete multiple Vertexs |
3D-MCP_createEdges | Create multiple Edges |
3D-MCP_getEdges | Get multiple Edges by IDs |
3D-MCP_listEdges | List all Edges |
3D-MCP_updateEdges | Update multiple Edges in a single operation |
3D-MCP_deleteEdges | Delete multiple Edges |
3D-MCP_createFaces | Create multiple Faces |
3D-MCP_getFaces | Get multiple Faces by IDs |
3D-MCP_listFaces | List all Faces |
3D-MCP_updateFaces | Update multiple Faces in a single operation |
3D-MCP_deleteFaces | Delete multiple Faces |
3D-MCP_listGroups | List all Groups |
3D-MCP_createUVMaps | Create multiple UVMaps |
3D-MCP_getUVMaps | Get multiple UVMaps by IDs |
3D-MCP_listUVMaps | List all UVMaps |
3D-MCP_updateUVMaps | Update multiple UVMaps in a single operation |
3D-MCP_deleteUVMaps | Delete multiple UVMaps |
3D-MCP_createMaterials | Create multiple Materials |
3D-MCP_getMaterials | Get multiple Materials by IDs |
3D-MCP_listMaterials | List all Materials |
3D-MCP_updateMaterials | Update multiple Materials in a single operation |
3D-MCP_deleteMaterials | Delete multiple Materials |
3D-MCP_createGroups | Create multiple Groups |
3D-MCP_getGroups | Get multiple Groups by IDs |
3D-MCP_updateGroups | Update multiple Groups in a single operation |
3D-MCP_deleteGroups | Delete multiple Groups |
3D-MCP_createCurves | Create multiple Curves |
3D-MCP_getCurves | Get multiple Curves by IDs |
3D-MCP_listCurves | List all Curves |
3D-MCP_updateCurves | Update multiple Curves in a single operation |
3D-MCP_deleteCurves | Delete multiple Curves |
3D-MCP_getQuadView | Get top, front, right, and perspective views of the scene. |
3D-MCP_createSubdivisionSurfaces | Create multiple SubdivisionSurfaces |
3D-MCP_getSubdivisionSurfaces | Get multiple SubdivisionSurfaces by IDs |
3D-MCP_listSubdivisionSurfaces | List all SubdivisionSurfaces |
3D-MCP_assignMaterials | Assign materials to meshes or specific faces |
3D-MCP_updateSubdivisionSurfaces | Update multiple SubdivisionSurfaces in a single operation |
3D-MCP_deleteSubdivisionSurfaces | Delete multiple SubdivisionSurfaces |
3D-MCP_combineMeshes | Combine multiple meshes into a single mesh |
3D-MCP_splitMeshes | Split meshes into separate objects |
3D-MCP_transformVertices | Transform multiple vertices |
3D-MCP_setEdgeCreases | Set crease weights for edges |
3D-MCP_extrudeFaces | Extrude faces |
3D-MCP_unwrapUVs | Generate UV coordinates using automatic unwrapping |
3D-MCP_transformUVs | Transform UV coordinates for vertices |
3D-MCP_performGroupOperations | Perform operations on object groups |
3D-MCP_editCurveControlPoints | Edit control points of curves |
3D-MCP_setSubdivisionLevels | Set subdivision levels for surfaces |
3D-MCP_triangulate | Convert n-gons to triangles |
3D-MCP_quadrangulate | Convert triangles to quads |
3D-MCP_bevel | Bevel edges or vertices |
3D-MCP_bridge | Create bridges between face loops |
3D-MCP_importGeometry | Import geometry data sources |
3D-MCP_exportGeometry | Export geometry collections to external formats |
3D-MCP_createJoints | Create multiple Joints |
3D-MCP_getJoints | Get multiple Joints by IDs |
3D-MCP_listJoints | List all Joints |
3D-MCP_updateJoints | Update multiple Joints in a single operation |
3D-MCP_deleteJoints | Delete multiple Joints |
3D-MCP_createConstraints | Create multiple Constraints |
3D-MCP_getConstraints | Get multiple Constraints by IDs |
3D-MCP_listConstraints | List all Constraints |
3D-MCP_updateConstraints | Update multiple Constraints in a single operation |
3D-MCP_deleteConstraints | Delete multiple Constraints |
3D-MCP_createIKChains | Create multiple IKChains |
3D-MCP_updateIKChains | Update multiple IKChains in a single operation |
3D-MCP_deleteIKChains | Delete multiple IKChains |
3D-MCP_createBlendShapes | Create multiple BlendShapes |
3D-MCP_getBlendShapes | Get multiple BlendShapes by IDs |
3D-MCP_listBlendShapes | List all BlendShapes |
3D-MCP_updateBlendShapes | Update multiple BlendShapes in a single operation |
3D-MCP_deleteBlendShapes | Delete multiple BlendShapes |
Unsplash MCP Server_search_photos | |
mcp-mermaid-validator_validateMermaid | Validates a Mermaid diagram and returns the rendered SVG if valid |
Semgrep MCP Server_start_scan_from_content | Starts a Semgrep scan with code content provided directly Args: ctx: MCP context for sending notifications code_files: List of dictionaries with 'filename' and 'content' keys config: Semgrep configuration (e.g. "auto" or absolute path to rule file) Returns: Dictionary with scan information |
Semgrep MCP Server_get_scan_status | Gets the current status of a scan Args: scan_id: Identifier for the scan Returns: Dictionary with scan status information |
Semgrep MCP Server_get_scan_results | Gets the results of a completed scan Args: scan_id: Identifier for the scan Returns: Dictionary with scan results |
Semgrep MCP Server_get_supported_languages | Returns a list of supported languages by Semgrep Returns: List of supported languages |
Semgrep MCP Server_semgrep_scan | Runs a Semgrep scan on provided code content and returns the findings in JSON format Args: code_files: List of dictionaries with 'filename' and 'content' keys config: Semgrep configuration (e.g. "auto" or absolute path to rule file) Returns: Dictionary with scan results in Semgrep JSON format |
Semgrep MCP Server_start_scan | Starts a Semgrep scan with progress updates via notifications Args: ctx: MCP context for sending notifications target_path: Absolute path to the file or directory to scan config: Semgrep configuration (e.g. "auto" or absolute path to rule file) Returns: Dictionary with scan information |
freecad mcp_get_object | Get an object from a document. You can use this tool to get the properties of an object to see what you can check or edit. |
freecad mcp_get_parts_list | Get the list of parts in the parts library addon. |
freecad mcp_create_document | Create a new document in FreeCAD. |
freecad mcp_create_object | Create a new object in FreeCAD. |
freecad mcp_edit_object | Edit an object in FreeCAD.
This tool is used when the |
freecad mcp_delete_object | Delete an object in FreeCAD. |
freecad mcp_execute_code | Execute arbitrary Python code in FreeCAD. |
freecad mcp_get_view | Get a screenshot of the active view. |
freecad mcp_insert_part_from_library | Insert a part from the parts library addon. |
freecad mcp_get_objects | Get all objects in a document. You can use this tool to get the objects in a document to see what you can check or edit. |
VeyraX_get_tools | "Use this tool to retrieve a list of available tools from the Veyrax API. This will return dynamic tools that user has access to. You can use this tool to get the list of tools, method names and parameters, and then use tool_call tool to call the tool with the provided parameters. This method also returns all flows with name and id that user has access to (if any). " |
VeyraX_tool_call | "Use this tool to execute a specific method of another tool with the provided parameters based on get-tools tool response. You need to specify the tool name, method name, and any required parameters for that method." |
VeyraX_get_flow | "Use this tool to retrieve a specific workflow by its ID. Workflow is sequence of steps that are executed in order to get some result. Flow comes with description, steps and input schema of all methods to call. You can call this tool once you have a flowId which usually you can get from: user directly OR using get-tools method." |
NEAR MCP_system_list_local_keypairs | List all accounts and their keypairs in the local keystore by network. |
NEAR MCP_system_import_account | Import an account into the local keystore. This will allow the user to use this account in other tools. Remember mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix. |
NEAR MCP_system_remove_local_account | Removes a local NEAR account from the local keystore. Once removed, the account will no longer be available to the user. This does not delete the account from the NEAR blockchain, it only removes the account from the local keystore. |
NEAR MCP_account_view_account_summary | Get summary information about any NEAR account. This calls the public RPC endpoint to get this information. |
NEAR MCP_system_search_popular_fungible_token_contracts | Search for popular fungible token contract information on the NEAR blockchain, with a grep-like search. Use this tool to search for popular fungible token contract information. This tool works by 'grepping' through a list of contract information JSON objects. Useful for getting contract information about popular tokens like USDC native, USDT, WNEAR, and more. |
NEAR MCP_account_export_account | Export an account from the local keystore to a file. |
NEAR MCP_account_sign_data | Cryptographically sign a piece of data with a local account's private key, then encode the result with the specified encoding. Outputs the curve, encoded signature, and encoding used. |
NEAR MCP_account_verify_signature | Cryptographically verify a signed piece of data against some NEAR account's public key. |
NEAR MCP_account_create_implicit_account | Create an implicit account on the NEAR blockchain. An implicit account is a new random keypair that is not associated with an account ID. Instead the account ID is derived from the public key of the keypair (a 64-character lowercase hexadecimal representation of the public key). This implicit account id can be used just as a regular account id, but remember it is not an official account id with a .near or .testnet suffix. Creating implicit accounts is useful for adding new access keys to an existing account. |
NEAR MCP_account_create_account | Create a new NEAR account with a new account ID. The initial balance of this account will be funded by the account that is calling this tool. This account will be created with a random public key. If no account ID is provided, a random one will be generated. Ensure that mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix. |
NEAR MCP_account_delete_account | Delete an account from the NEAR blockchain. This will also remove the account from the local keystore and any associated keypair. |
NEAR MCP_account_list_access_keys | List all access keys for an given account. |
NEAR MCP_account_add_access_key | Add an access key to an account. This will allow the account to interact with the contract. |
NEAR MCP_account_delete_access_keys | Delete an access key from an account based on it's public key. |
NEAR MCP_tokens_send_near | Send NEAR tokens to an account (in NEAR). The signer account is the sender of the tokens, and the receiver account is the recipient of the tokens. Remember mainnet accounts are created with a .near suffix, and testnet accounts are created with a .testnet suffix. The user is sending tokens as the signer account. Please ensure that the sender and receiver accounts are in the same network. |
NEAR MCP_tokens_send_ft | Send Fungible Tokens (FT) like USDC native, USDT, WNEAR, etc. based on the NEP-141 and NEP-148 standards to an account. The signer account is the sender of the tokens, and the receiver account is the recipient of the tokens. Ensure the contract account id exists and is in the same network as the signer and receiver accounts. |
NEAR MCP_contract_view_functions | View available functions on a NEAR smart contract. |
NEAR MCP_contract_get_function_args | Get the arguments of a function call by parsing the contract's ABI or by using the nearblocks.io API (as a fallback). This function API checks recent execution results of the contract's method being queried to determine the likely arguments of the function call. Warning: This tool is experimental and is not garunteed to get the correct arguments. |
NEAR MCP_contract_call_raw_function_as_read_only | Call a function of a contract as a read-only call. This is equivalent to saying we are calling a view method of the contract. |
NEAR MCP_contract_call_raw_function | Call a function of a contract as a raw function call action. This tool creates a function call as a transaction which costs gas and NEAR. |
mcp-coincap-jj_get-crypto-price | Get current price and 24h stats for a cryptocurrency |
mcp-coincap-jj_get-market-analysis | Get detailed market analysis including top exchanges and volume distribution |
mcp-coincap-jj_get-historical-analysis | Get historical price analysis with customizable timeframe |
mcp-audio-analysis_load | |
mcp-audio-analysis_get_duration | |
mcp-audio-analysis_tempo | |
mcp-audio-analysis_chroma_cqt | |
mcp-audio-analysis_mfcc | |
mcp-audio-analysis_beat_track | |
mcp-audio-analysis_download_from_url | |
mcp-audio-analysis_download_from_youtube | |
Bing Search MCP Server_bing_web_search | Performs a web search using the Bing Search API for general information and websites. |
Bing Search MCP Server_bing_news_search | Searches for news articles using Bing News Search API for current events and timely information. |
Bing Search MCP Server_bing_image_search | Searches for images using Bing Image Search API for visual content. |
Unity Editor MCP Server_execute_menu_item | Executes a Unity menu item by path |
Unity Editor MCP Server_select_object | Sets the selected object in the Unity editor by path or ID |
Unity Editor MCP Server_package_manager | Manages packages in the Unity Package Manager |
Unity Editor MCP Server_run_tests | Runs Unity's Test Runner tests |
Unity Editor MCP Server_notify_message | Sends a message to the Unity console |
ida-mcp-server_ida_get_function_assembly_by_name | Get assembly code for a function by name |
ida-mcp-server_ida_get_function_assembly_by_address | Get assembly code for a function by address |
ida-mcp-server_ida_get_function_decompiled_by_name | Get decompiled pseudocode for a function by name |
ida-mcp-server_ida_get_function_decompiled_by_address | Get decompiled pseudocode for a function by address |
ida-mcp-server_ida_get_global_variable_by_name | Get information about a global variable by name |
ida-mcp-server_ida_get_global_variable_by_address | Get information about a global variable by address |
ida-mcp-server_ida_get_current_function_assembly | Get assembly code for the function at the current cursor position |
ida-mcp-server_ida_get_current_function_decompiled | Get decompiled pseudocode for the function at the current cursor position |
ida-mcp-server_ida_rename_local_variable | Rename a local variable within a function in the IDA database |
ida-mcp-server_ida_rename_global_variable | Rename a global variable in the IDA database |
ida-mcp-server_ida_rename_function | Rename a function in the IDA database |
ida-mcp-server_ida_rename_multi_local_variables | Rename multiple local variables within a function at once in the IDA database |
ida-mcp-server_ida_rename_multi_global_variables | Rename multiple global variables at once in the IDA database |
ida-mcp-server_ida_rename_multi_functions | Rename multiple functions at once in the IDA database |
ida-mcp-server_ida_add_assembly_comment | Add a comment at a specific address in the assembly view of the IDA database |
ida-mcp-server_ida_add_function_comment | Add a comment to a function in the IDA database |
ida-mcp-server_ida_add_pseudocode_comment | Add a comment to a specific address in the function's decompiled pseudocode |
ida-mcp-server_ida_execute_script | Execute a Python script in IDA Pro and return its output. The script runs in IDA's context with access to all IDA API modules. |
ida-mcp-server_ida_execute_script_from_file | Execute a Python script from a file path in IDA Pro and return its output. The file should be accessible from IDA's process. |
VRChat MCP Server_vrchat_get_current_user | Retrieve your own VRChat user information |
VRChat MCP Server_vrchat_get_friends_list | Retrieve a list of VRChat friend information. The following information can be retrieved: - "bio" - "bioLinks" - "currentAvatarImageUrl" - "currentAvatarThumbnailImageUrl" - "currentAvatarTags" - "developerType" - "displayName" - "fallbackAvatar" - "id" - "isFriend" - "last_platform" - "last_login" - "profilePicOverride" - "pronouns" - "status" - "statusDescription" - "tags" - "userIcon" - "location" - "friendKey" |
VRChat MCP Server_vrchat_search_avatars | Search and list avatars by query filters. You can only search your own or featured avatars. It is not possible as a normal user to search other people's avatars. |
VRChat MCP Server_vrchat_search_worlds | Search and list worlds by query filters. |
VRChat MCP Server_vrchat_create_instance | Create a new instance of a world. |
VRChat MCP Server_vrchat_join_group | Join a VRChat group by ID |
VRChat MCP Server_vrchat_search_groups | Search VRChat groups by name or shortCode |
Claude TypeScript MCP Servers_brave_web_search | Retrieves up-to-date information from the web using Brave Search. You should proactively use this tool whenever you need current information beyond your knowledge cutoff, when answering questions about recent events, when asked about specific facts you're uncertain about, or when providing comprehensive answers. Search automatically when you suspect information might be outdated or when greater detail would improve your response. Use this for news, technical information, current events, product details, or any topic where fresh, accurate data would enhance your answer quality. |
Claude TypeScript MCP Servers_brave_local_search | Finds information about local businesses, services, attractions, and locations with real-time data. Use this tool proactively whenever a query mentions specific places or location-based information. This is especially useful for questions about restaurants, shops, tourist attractions, local services, or any place-based inquiry. You should automatically search when users ask about places 'near' somewhere, business hours, local reviews, addresses, or location details that would benefit from current information. This provides much more accurate and up-to-date information than your built-in knowledge. |
terraform-cloud-mcp_get_account_details | Get account details for a Terraform Cloud API token |
terraform-cloud-mcp_list_workspaces | List workspaces in an organization. |
terraform-cloud-mcp_get_workspace_details | Get details for a specific workspace, identified either by ID or by org name and workspace name. |
terraform-cloud-mcp_force_unlock_workspace | Force unlock a workspace. This should be used with caution. |
terraform-cloud-mcp_create_workspace | Create a new workspace in an organization. |
terraform-cloud-mcp_update_workspace | Update an existing workspace. |
terraform-cloud-mcp_delete_workspace | Delete a workspace. |
terraform-cloud-mcp_safe_delete_workspace | Safely delete a workspace by first checking if it can be deleted. |
terraform-cloud-mcp_lock_workspace | Lock a workspace. |
terraform-cloud-mcp_unlock_workspace | Unlock a workspace. |
terraform-cloud-mcp_create_run | Create a run in a workspace |
terraform-cloud-mcp_list_runs_in_workspace | List runs in a workspace with filtering and pagination |
terraform-cloud-mcp_list_runs_in_organization | List runs across all workspaces in an organization |
terraform-cloud-mcp_get_run_details | Get detailed information about a specific run |
terraform-cloud-mcp_apply_run | Apply a run that is paused waiting for confirmation after a plan |
terraform-cloud-mcp_discard_run | Discard a run that is paused waiting for confirmation |
terraform-cloud-mcp_cancel_run | Cancel a run that is currently planning or applying |
terraform-cloud-mcp_force_cancel_run | Forcefully cancel a run immediately |
terraform-cloud-mcp_force_execute_run | Forcefully execute a run by canceling all prior runs |
terraform-cloud-mcp_get_organization_details | Get details for a specific organization |
terraform-cloud-mcp_get_organization_entitlements | Show entitlement set for organization features |
terraform-cloud-mcp_list_organizations | List organizations with filtering options |
terraform-cloud-mcp_create_organization | Create a new organization in Terraform Cloud |
terraform-cloud-mcp_update_organization | Update an existing organization in Terraform Cloud |
terraform-cloud-mcp_delete_organization | Delete an organization from Terraform Cloud |
mem0 Memory System_add_memory | Stores a piece of text as a memory in Mem0. |
mem0 Memory System_search_memory | Searches stored memories in Mem0 based on a query. |
mem0 Memory System_delete_memory | Deletes a specific memory from Mem0 by ID. |
Unstructured API MCP Server_create_s3_source | Create an S3 source connector. |
Unstructured API MCP Server_update_s3_source | Update an S3 source connector. |
Unstructured API MCP Server_delete_s3_source | Delete an S3 source connector. |
Unstructured API MCP Server_create_azure_source | Create an Azure source connector. |
Unstructured API MCP Server_update_azure_source | Update an azure source connector. |
Unstructured API MCP Server_delete_azure_source | Delete an azure source connector. |
Unstructured API MCP Server_create_gdrive_source | Create an gdrive source connector. |
Unstructured API MCP Server_update_gdrive_source | Update an gdrive source connector. |
Unstructured API MCP Server_delete_gdrive_source | Delete an gdrive source connector. |
Unstructured API MCP Server_create_s3_destination | Create an S3 destination connector. |
Unstructured API MCP Server_update_s3_destination | Update an S3 destination connector. |
Unstructured API MCP Server_delete_s3_destination | Delete an S3 destination connector. |
Unstructured API MCP Server_create_weaviate_destination | Create an weaviate vector database destination connector. |
Unstructured API MCP Server_update_weaviate_destination | Update an weaviate destination connector. |
Unstructured API MCP Server_delete_weaviate_destination | Delete an weaviate destination connector. |
Unstructured API MCP Server_create_astradb_destination | Create an AstraDB destination connector. |
Unstructured API MCP Server_update_astradb_destination | Update an AstraDB destination connector. |
Unstructured API MCP Server_delete_astradb_destination | Delete an AstraDB destination connector. |
Unstructured API MCP Server_create_neo4j_destination | Create an neo4j destination connector. |
Unstructured API MCP Server_update_neo4j_destination | Update an neo4j destination connector. |
Unstructured API MCP Server_delete_neo4j_destination | Delete an neo4j destination connector. |
Unstructured API MCP Server_invoke_firecrawl_crawlhtml | Start an asynchronous web crawl job using Firecrawl to retrieve HTML content. |
Unstructured API MCP Server_check_crawlhtml_status | Check the status of an existing Firecrawl HTML crawl job. |
Unstructured API MCP Server_invoke_firecrawl_llmtxt | Start an asynchronous llmfull.txt generation job using Firecrawl. This file is a standardized markdown file containing information to help LLMs use a website at inference time. The llmstxt endpoint leverages Firecrawl to crawl your website and extracts data using gpt-4o-mini Args: url: URL to crawl s3_uri: S3 URI where results will be uploaded max_urls: Maximum number of pages to crawl (1-100, default: 10) |
Unstructured API MCP Server_check_llmtxt_status | Check the status of an existing llmfull.txt generation job. |
Unstructured API MCP Server_cancel_crawlhtml_job | Cancel an in-progress Firecrawl HTML crawl job. |
Unstructured API MCP Server_list_sources | |
Unstructured API MCP Server_get_source_info | Get detailed information about a specific source connector. |
Unstructured API MCP Server_list_destinations | List available destinations from the Unstructured API. |
Unstructured API MCP Server_get_destination_info | Get detailed information about a specific destination connector. |
Unstructured API MCP Server_list_workflows | |
Unstructured API MCP Server_get_workflow_info | Get detailed information about a specific workflow. |
Unstructured API MCP Server_create_workflow | Create a new workflow. Custom workflow DAG nodes
Partitioner node A Partitioner node has a type of partition and a subtype of auto, vlm, hi_res, or fast. Examples:
Chunker node A Chunker node has a type of chunk and subtype of chunk_by_character or chunk_by_title.
set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } }
set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } } Prompter node An Prompter node has a type of prompter and subtype of:
Example: { "name": "Prompter", "type": "prompter", "subtype": "<subtype>", "settings": {} } Embedder node An Embedder node has a type of embed Allowed values for subtype and model_name include:
Example: { "name": "Embedder", "type": "embed", "subtype": "<subtype>", "settings": { "model_name": "<model-name>" } } |
Unstructured API MCP Server_run_workflow | Run a specific workflow. |
Unstructured API MCP Server_update_workflow | Update an existing workflow. Custom workflow DAG nodes
Partitioner node A Partitioner node has a type of partition and a subtype of auto, vlm, hi_res, or fast. Examples:
Chunker node A Chunker node has a type of chunk and subtype of chunk_by_character or chunk_by_title.
set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } }
set same as max_characters) "max_characters": <max-characters>, (required) "overlap": <overlap>, (required, if not provided set default to 0) "overlap_all": <true|false>, "contextual_chunking_strategy": "v1" } } Prompter node An Prompter node has a type of prompter and subtype of:
Example: { "name": "Prompter", "type": "prompter", "subtype": "<subtype>", "settings": {} } Embedder node An Embedder node has a type of embed Allowed values for subtype and model_name include:
Example: { "name": "Embedder", "type": "embed", "subtype": "<subtype>", "settings": { "model_name": "<model-name>" } } |
Unstructured API MCP Server_delete_workflow | Delete a specific workflow. |
Unstructured API MCP Server_list_jobs | |
Unstructured API MCP Server_get_job_info | Get detailed information about a specific job. |
Unstructured API MCP Server_cancel_job | Delete a specific job. |
replicate-flux-mcp_generate_image | Generate an image from a text prompt using Flux Schnell model |
replicate-flux-mcp_generate_multiple_images | Generate multiple images from an array of prompts using Flux Schnell model |
replicate-flux-mcp_generate_image_variants | Generate multiple variants of the same image from a single prompt |
replicate-flux-mcp_generate_svg | Generate an SVG from a text prompt using Recraft model |
replicate-flux-mcp_get_prediction | Get details of a specific prediction by ID |
replicate-flux-mcp_create_prediction | Generate an prediction from a text prompt using Flux Schnell model |
replicate-flux-mcp_prediction_list | Get a list of recent predictions from Replicate |
Chain of Draft Thinking_chain-of-draft | REQUIRED PARAMETERS - ALL MUST BE PROVIDED:
Optional parameters only required based on context:
|
AgentQL MCP Server_extract-web-data | Extracts structured data as JSON from a web page given a URL using a Natural Language description of the data. |
Opik MCP Server_create-project | Create a new project/workspace |
Opik MCP Server_list-prompts | Get a list of Opik prompts |
Opik MCP Server_create-prompt | Create a new prompt |
Opik MCP Server_create-prompt-version | Create a new version of a prompt |
Opik MCP Server_get-prompt-by-id | Get a single prompt by ID |
Opik MCP Server_update-prompt | Update a prompt |
Opik MCP Server_delete-prompt | Delete a prompt |
Opik MCP Server_list-projects | Get a list of projects/workspaces |
Opik MCP Server_get-project-by-id | Get a single project by ID |
Opik MCP Server_update-project | Update a project |
Opik MCP Server_delete-project | Delete a project |
Opik MCP Server_list-traces | Get a list of traces |
Opik MCP Server_get-trace-by-id | Get a single trace by ID |
Opik MCP Server_get-trace-stats | Get statistics for traces |
Opik MCP Server_get-metrics | Get metrics data |
Opik MCP Server_get-server-info | Get information about the Opik server configuration |
Opik MCP Server_get-opik-help | Get contextual help about Opik Comet's capabilities |
Opik MCP Server_get-opik-examples | Get examples of how to use Opik Comet's API for specific tasks |
Opik MCP Server_get-opik-tracing-info | Get information about Opik's tracing capabilities and how to use them |
mcp-brave-search_brave_web_search | Performs a web search using the Brave Search API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination. |
mcp-brave-search_brave_local_search | Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:
|
cloudflare-browser-rendering-mcp_fetch_page | Fetches and processes a web page for LLM context |
cloudflare-browser-rendering-mcp_search_documentation | Searches Cloudflare documentation and returns relevant content |
cloudflare-browser-rendering-mcp_extract_structured_content | Extracts structured content from a web page using CSS selectors |
cloudflare-browser-rendering-mcp_summarize_content | Summarizes web content for more concise LLM context |
cloudflare-browser-rendering-mcp_take_screenshot | Takes a screenshot of a web page and returns it as an image |
EDUCHAIN Agent Kit_get_token_price | Get the current price of a token on SailFish DEX |
EDUCHAIN Agent Kit_get_token_info | Get detailed information about a token on SailFish DEX |
EDUCHAIN Agent Kit_get_pool_info | Get detailed information about a liquidity pool on SailFish DEX |
EDUCHAIN Agent Kit_get_top_tokens | Get a list of top tokens by TVL on SailFish DEX |
EDUCHAIN Agent Kit_get_top_pools | Get a list of top liquidity pools by TVL on SailFish DEX |
EDUCHAIN Agent Kit_get_total_tvl | Get the total value locked (TVL) in SailFish DEX |
EDUCHAIN Agent Kit_get_24h_volume | Get the 24-hour trading volume on SailFish DEX |
EDUCHAIN Agent Kit_get_token_historical_data | Get historical data for a token on SailFish DEX |
EDUCHAIN Agent Kit_get_pool_historical_data | Get historical data for a liquidity pool on SailFish DEX |
EDUCHAIN Agent Kit_get_edu_balance | Get the EDU balance of a wallet address |
EDUCHAIN Agent Kit_get_token_balance | Get the token balance of a wallet address with USD value using SailFish as price oracle |
EDUCHAIN Agent Kit_get_multiple_token_balances | Get multiple token balances for a wallet address with USD values using SailFish as price oracle |
EDUCHAIN Agent Kit_get_nft_balance | Get the NFT balance of a wallet address for a specific NFT collection |
EDUCHAIN Agent Kit_get_wallet_overview | Get an overview of a wallet including EDU, tokens, and NFTs |
EDUCHAIN Agent Kit_set_rpc_url | Set the RPC URL for blockchain interactions |
EDUCHAIN Agent Kit_get_rpc_url | Get the current RPC URL used for blockchain interactions |
EDUCHAIN Agent Kit_send_edu | Send EDU native token to another wallet address |
EDUCHAIN Agent Kit_get_wallet_address_from_private_key | Get wallet address from private key with proper checksum formatting |
EDUCHAIN Agent Kit_send_erc20_token | Send ERC20 token to another wallet address |
EDUCHAIN Agent Kit_get_swap_quote | Get a quote for swapping tokens on SailFish DEX |
EDUCHAIN Agent Kit_swap_tokens | Swap tokens on SailFish DEX (token to token) |
EDUCHAIN Agent Kit_swap_edu_for_tokens | Swap EDU for tokens on SailFish DEX |
EDUCHAIN Agent Kit_swap_tokens_for_edu | Swap tokens for EDU on SailFish DEX |
EDUCHAIN Agent Kit_get_external_market_data | Get external market data for EDU from centralized exchanges |
EDUCHAIN Agent Kit_check_arbitrage_opportunities | Check for arbitrage opportunities between centralized exchanges and SailFish DEX |
EDUCHAIN Agent Kit_update_external_market_config | Update the configuration for external market data API |
EDUCHAIN Agent Kit_get_external_market_config | Get the current configuration for external market data API |
EDUCHAIN Agent Kit_wrap_edu | Wrap EDU to WEDU (Wrapped EDU) |
EDUCHAIN Agent Kit_unwrap_wedu | Unwrap WEDU (Wrapped EDU) to EDU |
TranscriptionTools MCP Server_repair_text | Analyzes and repairs transcription errors with greater than 90% confidence |
TranscriptionTools MCP Server_get_repair_log | Retrieves detailed analysis log from previous repair operation |
TranscriptionTools MCP Server_format_transcript | Transforms timestamped transcripts into naturally formatted text |
TranscriptionTools MCP Server_summary_text | Generates intelligent summaries using ACE cognitive methodology |
basic-memory_delete_note | Delete a note by title or permalink |
basic-memory_read_content | Read a file's raw content by path or permalink |
basic-memory_build_context | Build context from a memory:// URI to continue conversations naturally. |
basic-memory_recent_activity | Get recent activity from across the knowledge base. |
basic-memory_search | Search across all content in basic-memory, including documents and entities |
basic-memory_read_note | Read a markdown note by title or permalink. |
basic-memory_write_note | Create or update a markdown note. Returns a markdown formatted summary of the semantic content. |
basic-memory_canvas | Create an Obsidian canvas file to visualize concepts and connections. |
basic-memory_project_info | Get information and statistics about the current Basic Memory project. |
Make MCP Server_run_scenario_8632 | Scenario D - Subscenario |
Make MCP Server_run_scenario_11704 | Scenario Inputs All Types |
Make MCP Server_run_scenario_11707 | Scenario Inputs: Array of Collections |
Make MCP Server_run_scenario_11652 | Tool: Add to Inventory (Add a new item to the inventory.) |
Make MCP Server_run_scenario_11422 | Tool: List Inventory (Lists items in inventory.) |
Make MCP Server_run_scenario_2361 | Dynamic Connections Testing |
Github Project Manager_add_issue_comment | Add a comment to an existing issue |
Github Project Manager_update_project_item | Move an item between columns in a GitHub project |
Github Project Manager_create_issue | Create a new issue in a GitHub repository |
Github Project Manager_update_issue | Update an existing issue in a GitHub repository |
Github Project Manager_list_issues | List issues in a GitHub repository with filtering options |
Github Project Manager_get_issue | Get details of a specific issue in a GitHub repository. |
Github Project Manager_create_project | Create a new GitHub project board |
Github Project Manager_add_project_item | Add an issue or pull request to a GitHub project |
Github Project Manager_list_project_items | List items in a GitHub project |
Github Project Manager_create_pull_request | Create a new pull request in a GitHub repository |
Github Project Manager_update_pull_request | Update an existing pull request in a GitHub repository |
Github Project Manager_list_pull_requests | List pull requests in a GitHub repository with filtering options |
Github Project Manager_get_pull_request | Get details of a specific pull request in a GitHub repository |
Github Project Manager_merge_pull_request | Merge a pull request |
Github Project Manager_is_pull_request_merged | Check if a pull request has been merged |
Github Project Manager_create_pull_request_review | Create a review for a pull request |
Github Project Manager_list_pull_request_reviews | List reviews for a pull request |
Github Project Manager_create_pull_request_review_comment | Create a review comment for a pull request |
Github Project Manager_list_pull_request_review_comments | List review comments for a pull request |
Github Project Manager_request_reviewers | Request reviewers for a pull request |
Github Project Manager_remove_requested_reviewers | Remove requested reviewers from a pull request |
Github Project Manager_update_pull_request_branch | Update a pull request branch with the latest upstream changes |
Glif_run_glif | Run a glif with the specified ID and inputs |
Glif_list_featured_glifs | Get a curated list of featured glifs |
Glif_glif_info | Get detailed information about a glif including input fields |
Glif_my_glifs | Get a list of your glifs |
Glif_my_glif_user_info | Get detailed information about your user account, recent glifs, and recent runs |
XTQuantAI_get_trading_dates | - |
XTQuantAI_get_stock_list | - |
XTQuantAI_get_instrument_detail | - |
XTQuantAI_get_history_market_data | - |
XTQuantAI_get_latest_market_data | - |
XTQuantAI_get_full_market_data | |
XTQuantAI_create_chart_panel | - |
XTQuantAI_create_custom_layout | - |
Vectorize_retrieve | Retrieve documents from a Vectorize pipeline. |
Vectorize_extract | Perform text extraction and chunking on a document. |
Vectorize_deep-research | Generate a deep research on a Vectorize pipeline. |
image-tools-mcp_get_image_size | Get the size of an image from URL |
image-tools-mcp_get_local_image_size | Get the size of a local image |
image-tools-mcp_compress_image_from_url | Compress a single image from URL using TinyPNG API (only supports image files, not folders) |
image-tools-mcp_compress_local_image | Compress a single local image file using TinyPNG API (only supports image files, not folders) |
cryptopanic-mcp-server_get_crypto_news | - |
adx-mcp-server_execute_query | Executes a Kusto Query Language (KQL) query against the configured Azure Data Explorer database and returns the results as a list of dictionaries. |
adx-mcp-server_list_tables | Retrieves a list of all tables available in the configured Azure Data Explorer database, including their names, folders, and database associations. |
adx-mcp-server_get_table_schema | Retrieves the schema information for a specified table in the Azure Data Explorer database, including column names, data types, and other schema-related metadata. |
adx-mcp-server_sample_table_data | Retrieves a random sample of rows from the specified table in the Azure Data Explorer database. The sample_size parameter controls how many rows to return (default: 10). |
Memory Bank MCP_initialize_memory_bank | Initialize a Memory Bank in the specified directory |
Memory Bank MCP_set_memory_bank_path | Set a custom path for the Memory Bank |
Memory Bank MCP_debug_mcp_config | Debug the current MCP configuration |
Memory Bank MCP_read_memory_bank_file | Read a file from the Memory Bank |
Memory Bank MCP_write_memory_bank_file | Write to a Memory Bank file |
Memory Bank MCP_list_memory_bank_files | List Memory Bank files |
Memory Bank MCP_get_memory_bank_status | Check Memory Bank status |
Memory Bank MCP_migrate_file_naming | Migrate Memory Bank files from camelCase to kebab-case naming convention |
Memory Bank MCP_track_progress | Track progress and update Memory Bank files |
Memory Bank MCP_update_active_context | Update the active context file |
Memory Bank MCP_log_decision | Log a decision in the decision log |
Memory Bank MCP_switch_mode | Switches to a specific mode |
Memory Bank MCP_get_current_mode | Gets information about the current mode |
Memory Bank MCP_process_umb_command | Processes the Update Memory Bank (UMB) command |
Memory Bank MCP_complete_umb | Completes the Update Memory Bank (UMB) process |
Gitingest-MCP_git_summary | |
Gitingest-MCP_git_tree | |
Gitingest-MCP_git_files | |
DuckDuckGo MCP Server_duckduckgo_web_search | Performs a web search using the DuckDuckGo, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports content filtering and region-specific searches. Maximum 20 results per request. |
Git Auto Commit MCP Server_git-changes-commit-message | Analyzes current git changes and provides a commit message |
MCP Create Server_create-server-from-template | Create a new MCP server from a template. TypeScript: Python:
|
MCP Create Server_execute-tool | Execute a tool on a server |
MCP Create Server_get-server-tools | Get the tools available on a server |
MCP Create Server_delete-server | Delete a server |
MCP Create Server_list-servers | List all running servers |
Redash MCP Server_list-queries | List all available queries in Redash |
Redash MCP Server_get-query | Get details of a specific query |
Redash MCP Server_create-query | Create a new query in Redash |
Redash MCP Server_update-query | Update an existing query in Redash |
Redash MCP Server_archive-query | Archive (soft-delete) a query in Redash |
Redash MCP Server_list-data-sources | List all available data sources in Redash |
Redash MCP Server_execute-query | Execute a Redash query and return results |
Redash MCP Server_list-dashboards | List all available dashboards in Redash |
Redash MCP Server_get-dashboard | Get details of a specific dashboard |
Redash MCP Server_get-visualization | Get details of a specific visualization |
Meme MCP Server_generateMeme | Generate a meme image from Imgflip using the numeric template id and text |
mcp-omnisearch_tavily_search | Search the web using Tavily Search API. Best for factual queries requiring reliable sources and citations. Provides high-quality results for technical, scientific, and academic topics. Use when you need verified information with strong citation support. |
mcp-omnisearch_brave_search | Privacy-focused search engine with good coverage of technical topics. Features independent index and strong privacy protections. Best for technical documentation, developer resources, and privacy-sensitive queries. |
mcp-omnisearch_kagi_search | High-quality search results with minimal advertising influence, focused on authoritative sources. Features strong privacy protection and access to specialized knowledge indexes. Best for research, technical documentation, and finding high-quality content without SEO manipulation. |
mcp-omnisearch_perplexity_search | AI-powered response generation combining real-time web search with advanced language models. Best for complex queries requiring reasoning and synthesis across multiple sources. Features contextual memory for follow-up questions. |
mcp-omnisearch_kagi_fastgpt_search | Quick AI-generated answers with citations, optimized for rapid response (900ms typical start time). Runs full search underneath for enriched answers. |
mcp-omnisearch_jina_reader_process | Convert any URL to clean, LLM-friendly text using Jina Reader API |
mcp-omnisearch_kagi_summarizer_process | Instantly summarizes content of any type and length from URLs. Supports pages, videos, and podcasts with transcripts. Best for quick comprehension of long-form content and multimedia resources. |
mcp-omnisearch_tavily_extract_process | Extract web page content from single or multiple URLs using Tavily Extract. Efficiently converts web content into clean, processable text with configurable extraction depth and optional image extraction. Returns both combined and individual URL content. Best for content analysis, data collection, and research. |
mcp-omnisearch_firecrawl_scrape_process | Extract clean, LLM-ready data from single URLs with enhanced formatting options using Firecrawl. Efficiently converts web content into markdown, plain text, or structured data with configurable extraction options. Best for content analysis, data collection, and AI training data preparation. |
mcp-omnisearch_firecrawl_crawl_process | Deep crawling of all accessible subpages on a website with configurable depth limits using Firecrawl. Efficiently discovers and extracts content from multiple pages within a domain. Best for comprehensive site analysis, content indexing, and data collection from entire websites. |
mcp-omnisearch_firecrawl_map_process | Fast URL collection from websites for comprehensive site mapping using Firecrawl. Efficiently discovers all accessible URLs within a domain without extracting content. Best for site auditing, URL discovery, and preparing for targeted content extraction. |
mcp-omnisearch_firecrawl_extract_process | Structured data extraction with AI using natural language prompts via Firecrawl. Extracts specific information from web pages based on custom extraction instructions. Best for targeted data collection, information extraction, and converting unstructured web content into structured data. |
mcp-omnisearch_firecrawl_actions_process | Support for page interactions (clicking, scrolling, etc.) before extraction for dynamic content using Firecrawl. Enables extraction from JavaScript-heavy sites, single-page applications, and content behind user interactions. Best for accessing content that requires navigation, form filling, or other interactions. |
mcp-omnisearch_jina_grounding_enhance | Real-time fact verification against web knowledge. Reduces hallucinations and improves content integrity through statement verification. |
mcp-omnisearch_kagi_enrichment_enhance | Provides supplementary content from specialized indexes (Teclis for web, TinyGem for news). Ideal for discovering non-mainstream results and enriching content with specialized knowledge. |
MCP Server Template_sample-tool | A sample tool for demonstration purposes |
Databutton MCP Server_submit_app_requirements | Submit app requirements |
Unofficial dubco-mcp-server_create_link | Create a new short link on dub.co, asking the user which domain to use |
Unofficial dubco-mcp-server_update_link | Update an existing short link on dub.co |
Unofficial dubco-mcp-server_delete_link | Delete a short link on dub.co |
Deskaid_deskaid | |
Claude Code MCP_bash | Execute a shell command |
Claude Code MCP_readFile | Read a file from the local filesystem |
Claude Code MCP_listFiles | Lists files and directories in a given path |
Claude Code MCP_searchGlob | Search for files matching a pattern |
Claude Code MCP_grep | Search for text in files |
Claude Code MCP_think | A tool for thinking through complex problems |
Claude Code MCP_codeReview | Review code for bugs, security issues, and best practices |
Claude Code MCP_editFile | Create or edit a file |
Cryo MCP Server_list_datasets | Return a list of all available cryo datasets |
Cryo MCP Server_query_dataset | |
Cryo MCP Server_lookup_dataset | |
Cryo MCP Server_get_transaction_by_hash | |
Cryo MCP Server_get_latest_ethereum_block | |
Targetprocess MCP Server_search_entities | Search Target Process entities with powerful filtering capabilities and preset filters for common scenarios |
Targetprocess MCP Server_get_entity | Get details of a specific Target Process entity |
Targetprocess MCP Server_create_entity | Create a new Target Process entity |
Targetprocess MCP Server_update_entity | Update an existing Target Process entity |
Targetprocess MCP Server_inspect_object | Inspect Target Process objects and properties through the API. This tool also provides API discovery capabilities through error messages when used with unsupported entity types. |
OKX MCP Server_get_price | Get latest price for an OKX instrument |
OKX MCP Server_get_candlesticks | Get candlestick data for an OKX instrument |
MCP Memory LibSQL_create_relations | Create relations between entities |
MCP Memory LibSQL_delete_entity | Delete an entity and all its associated data (observations and relations) |
MCP Memory LibSQL_delete_relation | Delete a specific relation between entities |
MCP Memory LibSQL_create_entities | Create new entities with observations and optional embeddings |
MCP Memory LibSQL_search_nodes | Search for entities and their relations using text or vector similarity |
MCP Memory LibSQL_read_graph | Get recent entities and their relations |
Higress AI-Search MCP Server_ai_search | |
Keycloak MCP Server_create-user | Create a new user in a specific realm |
Keycloak MCP Server_delete-user | Delete a user from a specific realm |
Keycloak MCP Server_list-realms | List all available realms |
Keycloak MCP Server_list-users | List users in a specific realm |
Git File Forensics MCP_track_file_versions | Track complete version history of a specific file, including renames and moves |
Git File Forensics MCP_analyze_file_diff | Analyze specific changes between any two versions of a file |
Git File Forensics MCP_analyze_file_context | Analyze broader context of file changes in a specific commit |
Git File Forensics MCP_analyze_file_semantics | Analyze semantic changes and patterns in file history |
File Operations MCP Server_copy_file | Copy a file to a new location |
File Operations MCP Server_read_file | Read the contents of a file |
File Operations MCP Server_write_file | Write content to a file |
File Operations MCP Server_make_directory | Create a new directory |
File Operations MCP Server_remove_directory | Remove a directory |
File Operations MCP Server_list_directory | List contents of a directory with detailed metadata |
File Operations MCP Server_copy_directory | Copy a directory and its contents to a new location |
File Operations MCP Server_watch_directory | Watch a directory for changes |
File Operations MCP Server_unwatch_directory | Stop watching a directory |
File Operations MCP Server_is_watching | Check if a path is currently being watched |
File Operations MCP Server_get_changes | Get list of tracked changes |
File Operations MCP Server_clear_changes | Clear all tracked changes |
DocuMind MCP Server_evaluate_readme | README |
MCP Substack Server_download_substack | Download and parse content from a Substack post |
GCP MCP_run-gcp-code | Run GCP code |
GCP MCP_list-projects | List all GCP projects accessible with current credentials |
GCP MCP_select-project | Selects GCP project to use for subsequent interactions |
GCP MCP_get-billing-info | Get billing information for the current project |
GCP MCP_get-cost-forecast | Get cost forecast for the current project |
GCP MCP_get-billing-budget | Get billing budgets for the current project |
GCP MCP_list-gke-clusters | List all GKE clusters in the current project |
GCP MCP_list-sql-instances | List all Cloud SQL instances in the current project |
GCP MCP_get-logs | Get Cloud Logging entries for the current project |
Vercel MCP_getDeployments | Lists deployments |
Vercel MCP_deleteDeployment | Deletes a deployment |
Vercel MCP_getDeploymentEvents | Gets deployment events by deployment ID and build ID |
Vercel MCP_getDeployment | Gets a deployment by ID or URL |
Vercel MCP_cancelDeployment | Cancels a deployment |
Vercel MCP_listDeploymentFiles | Lists deployment files |
Vercel MCP_getDeploymentFileContents | Gets deployment file contents |
Claude Desktop Commander MCP_execute_command | Execute a terminal command with timeout. Command will continue running in background if it doesn't complete within timeout. |
Claude Desktop Commander MCP_read_output | Read new output from a running terminal session. |
Claude Desktop Commander MCP_force_terminate | Force terminate a running terminal session. |
Claude Desktop Commander MCP_list_sessions | List all active terminal sessions. |
Claude Desktop Commander MCP_list_processes | List all running processes. Returns process information including PID, command name, CPU usage, and memory usage. |
Claude Desktop Commander MCP_kill_process | Terminate a running process by PID. Use with caution as this will forcefully terminate the specified process. |
Claude Desktop Commander MCP_block_command | Add a command to the blacklist. Once blocked, the command cannot be executed until unblocked. |
Claude Desktop Commander MCP_unblock_command | Remove a command from the blacklist. Once unblocked, the command can be executed normally. |
Claude Desktop Commander MCP_list_blocked_commands | List all currently blocked commands. |
Claude Desktop Commander MCP_read_file | Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Only works within allowed directories. |
Claude Desktop Commander MCP_read_multiple_files | Read the contents of multiple files simultaneously. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within allowed directories. |
Claude Desktop Commander MCP_write_file | Completely replace file contents. Best for large changes (>20% of file) or when edit_block fails. Use with caution as it will overwrite existing files. Only works within allowed directories. |
Claude Desktop Commander MCP_create_directory | Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. Only works within allowed directories. |
Claude Desktop Commander MCP_list_directory | Get a detailed listing of all files and directories in a specified path. Results distinguish between files and directories with [FILE] and [DIR] prefixes. Only works within allowed directories. |
Claude Desktop Commander MCP_move_file | Move or rename files and directories. Can move files between directories and rename them in a single operation. Both source and destination must be within allowed directories. |
Claude Desktop Commander MCP_search_files | Recursively search for files and directories matching a pattern. Searches through all subdirectories from the starting path. Only searches within allowed directories. |
Claude Desktop Commander MCP_get_file_info | Retrieve detailed metadata about a file or directory including size, creation time, last modified time, permissions, and type. Only works within allowed directories. |
Claude Desktop Commander MCP_list_allowed_directories | Returns the list of directories that this server is allowed to access. |
Claude Desktop Commander MCP_edit_block | Apply surgical text replacements to files. Best for small changes (<20% of file size). Multiple blocks can be used for separate changes. Will verify changes after application. Format: filepath, then <<<<<<< SEARCH, content to find, =======, new content, >>>>>>> REPLACE. |
Stealth Browser MCP Server_screenshot | Navigate to a URL and take a screenshot of the webpage |
BioMCP_analyze-active-site | Analyze the active site of a protein structure |
BioMCP_search-disease-proteins | Search for proteins related to a disease |
PDF Extraction MCP Server_extract-pdf-contents | Extract contents from a local PDF file, given page numbers separated in comma. Negative page index number supported. |
Inkdrop MCP Server_read-note | Retrieve the complete contents of the note by its ID from the database. |
Inkdrop MCP Server_search-notes | List all notes that contain a given keyword.
The result does not include entire note bodies as they are truncated in 200 characters.
You have to retrieve the full note content by calling Use special qualifiers to narrow down resultsYou can use special qualifiers to get more accurate results. See the qualifiers and their usage examples:
Combine qualifiersYou can combine the filter qualifiers to refine data even more. Find notes that contain the word 'Hello' and have the 'Issue' tag. Find notes that contain the word 'Typescript,' have the 'Contribution' tag, and the 'Completed' status Search for text with spacesTo find the text that includes spaces, put the text into the double quotation marks ("): Exclude text from searchTo exclude text from the search results or ignore a specific qualifier, put the minus sign (-) before it. You can also combine the exclusions. See the examples:
Note that you can't specify excluding modifiers only without including conditions. WARNING: Make sure to enter a text to search for after the exclusion modifier.
|
Inkdrop MCP Server_create-note | Create a new note in the database |
Inkdrop MCP Server_update-note | Update the existing note in the database |
Inkdrop MCP Server_list-notebooks | Retrieve a list of all notebooks |
Image Generator MCP Server_generate-image | Generate an image using Replicate's Stable Diffusion model |
Image Generator MCP Server_save-image | Save a generated image |
Image Generator MCP Server_list-saved-images | List all saved images |
Notion MCP Server_create-page | Create a new page in a database |
Notion MCP Server_update-page | Update an existing page |
Notion MCP Server_create-database | Create a new database |
Notion MCP Server_update-database | Update an existing database |
Notion MCP Server_get-page | Retrieve a page by its ID |
Notion MCP Server_get-block-children | Retrieve the children blocks of a block |
Notion MCP Server_append-block-children | Append blocks to a parent block |
Notion MCP Server_update-block | Update a block's content or archive status |
Notion MCP Server_get-block | Retrieve a block by its ID |
Notion MCP Server_search | Search Notion for pages or databases |
Notion MCP Server_list-databases | List all databases the integration has access to |
Notion MCP Server_query-database | Query a database |
Youtube MCP Server_DownloadClosedCaptions | Download closed captions from YouTube video. |
Manifold Markets MCP Server_place_bet | Place a bet on a market |
Manifold Markets MCP Server_cancel_bet | Cancel a limit order bet |
Manifold Markets MCP Server_sell_shares | Sell shares in a market |
Manifold Markets MCP Server_add_liquidity | Add mana to market liquidity pool |
Manifold Markets MCP Server_get_positions | Get user positions across markets |
Manifold Markets MCP Server_unresolve_market | Unresolve a previously resolved market |
Manifold Markets MCP Server_close_market | Close a market for trading |
Manifold Markets MCP Server_add_answer | Add a new answer to a multiple choice market |
Manifold Markets MCP Server_follow_market | Follow or unfollow a market |
Manifold Markets MCP Server_add_bounty | Add bounty to a market |
Manifold Markets MCP Server_award_bounty | Award bounty to a comment |
Manifold Markets MCP Server_remove_liquidity | Remove liquidity from market pool |
Manifold Markets MCP Server_react | React to a market or comment |
Manifold Markets MCP Server_send_mana | Send mana to other users |
Manifold Markets MCP Server_create_market | Create a new prediction market |
Manifold Markets MCP Server_search_markets | Search for prediction markets with optional filters |
Manifold Markets MCP Server_get_market | Get detailed information about a specific market |
Manifold Markets MCP Server_get_user | Get user information by username |
Nuanced MCP Server_initialize_graph | Initialize a code graph for the given repository path. Args: repo_path: Path to the repository to analyze Returns: Success message with information about the initialized graph |
Nuanced MCP Server_switch_repository | Switch to a different initialized repository. Args: repo_path: Path to the repository to switch to Returns: Success message or error |
Nuanced MCP Server_list_repositories | List all initialized repositories. Returns: List of initialized repositories |
Nuanced MCP Server_get_function_call_graph | Get the call graph for a specific function. Args: file_path: Path to the file containing the function function_name: Name of the function to analyze repo_path: Optional repository path (uses active repository if not specified) Returns: Information about the function's call graph |
Nuanced MCP Server_analyze_dependencies | Find all module or file dependencies in the codebase. Identifies all function dependencies for a file or module in the active repository. This identifies all modules that depend on the specified module or file. Args: file_path: Path to a specific file to analyze dependencies for module_name: Name of a module to analyze dependencies for (e.g., 'auth' will match 'app.auth', 'auth.users', etc.) Returns: A list of all functions and files that depend on the specified module |
Nuanced MCP Server_analyze_change_impact | Analyze the impact of changing a specific function. This tool performs a comprehensive impact analysis to help understand what would be affected if you modify the specified function. Args: file_path: Path to the file containing the function function_name: Name of the function to analyze Returns: A detailed analysis of the potential impact of changing the function |
Stability AI MCP Server_stability-ai-generate-image | Generate an image of anything based on a provided prompt. |
Stability AI MCP Server_stability-ai-generate-image-sd35 | Generate an image using Stable Diffusion 3.5 models with advanced configuration options. |
Stability AI MCP Server_stability-ai-remove-background | Remove the background from an image. |
Stability AI MCP Server_stability-ai-outpaint | Extends an image in any direction while maintaining visual consistency. |
Stability AI MCP Server_stability-ai-search-and-replace | Replace objects or elements in an image by describing what to replace and what to replace it with. |
Stability AI MCP Server_stability-ai-upscale-fast | Cheap and fast tool to enhance image resolution by 4x. |
Stability AI MCP Server_stability-ai-upscale-creative | Enhance image resolution up to 4K using AI with creative interpretation. This tool works best on highly degraded images and performs heavy reimagining. In general, don't use this (expensive) tool unless specifically asked to do so, usually after trying stability-ai-upscale-fast first. |
Stability AI MCP Server_stability-ai-control-sketch | Translate hand-drawn sketches to production-grade images. |
Stability AI MCP Server_stability-ai-0-list-resources | Use this to check for files before deciding you don't have access to a file or image or resource. It pulls in a list of all of user's available Resources (i.e. image files and their URI's) so we can reference pre-existing images to manipulate or upload to Stability AI. |
Stability AI MCP Server_stability-ai-search-and-recolor | Search and recolor object(s) in an image |
Stability AI MCP Server_stability-ai-replace-background-and-relight | Replace background and adjust lighting of an image |
Stability AI MCP Server_stability-ai-control-style | Generate a new image in the style of a reference image |
Stability AI MCP Server_stability-ai-control-structure | Generate a new image while maintaining the structure of a reference image |
ArXiv MCP Server_search_papers | Search for papers on arXiv with advanced filtering |
ArXiv MCP Server_download_paper | Download a paper and create a resource for it |
ArXiv MCP Server_list_papers | List all existing papers available as resources |
ArXiv MCP Server_read_paper | Read the full content of a stored paper in markdown format |
Shell MCP Server_run_command | Run a shell command |
Productboard MCP Server_get_products | Returns detail of all products. This API is paginated and the page limit is always 100 |
Productboard MCP Server_get_product_detail | Returns detailed information about a specific product |
Productboard MCP Server_get_features | Returns a list of all features. This API is paginated and the page limit is always 100 |
Productboard MCP Server_get_feature_detail | Returns detailed information about a specific feature |
Productboard MCP Server_get_components | Returns a list of all components. This API is paginated and the page limit is always 100 |
Productboard MCP Server_get_component_detail | Returns detailed information about a specific component |
Productboard MCP Server_get_feature_statuses | Returns a list of all feature statuses. This API is paginated and the page limit is always 100 |
Productboard MCP Server_get_notes | Returns a list of all notes |
Productboard MCP Server_get_note_detail | Returns detailed information about a specific note |
Productboard MCP Server_get_companies | Returns a list of all companies. This API is paginated and the page limit is always 100 |
Productboard MCP Server_get_company_detail | Returns detailed information about a specific company |
Coin MCP Server_listing-coins | Returns a paginated list of all active cryptocurrencies with latest market data |
Coin MCP Server_get-coin-info | Get coins' information includes details like logo, description, official website URL, social links, and links to a cryptocurrency's technical documentation. |
Coin MCP Server_get-coin-quotes | the latest market quote for 1 or more cryptocurrencies. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call. |
Sleep MCP Server_sleep | Wait for a specified duration |
PostHog MCP Server_list_posthog_projects | List all available PostHog projects. |
PostHog MCP Server_create_posthog_annotation | Create a PostHog annotation. Args: project_id: The ID of the project as an integer (e.g. 99423) content: The content/text of the annotation date_marker: Optional ISO-8601 timestamp for the annotation (e.g. 2024-03-20T14:15:22Z) |
Kintone MCP Server_create_app | kintone |
Kintone MCP Server_add_thread_comment | - |
Kintone MCP Server_update_space_members | - |
Kintone MCP Server_add_thread | - |
Kintone MCP Server_update_thread | - |
Kintone MCP Server_add_guests | - |
Kintone MCP Server_update_space_guests | - |
Kintone MCP Server_add_fields | kintone |
Kintone MCP Server_deploy_app | kintone |
Kintone MCP Server_get_deploy_status | kintone |
Kintone MCP Server_update_app_settings | kintone |
Kintone MCP Server_get_form_layout | kintone |
Kintone MCP Server_update_form_layout | kintone |
Kintone MCP Server_get_record | kintone1 |
Kintone MCP Server_search_records | kintone |
Kintone MCP Server_create_record | kintone |
Kintone MCP Server_update_record | kintone |
Kintone MCP Server_get_apps_info | kintone |
Kintone MCP Server_download_file | kintone |
Kintone MCP Server_upload_file | kintone |
Kintone MCP Server_add_record_comment | kintone |
Kintone MCP Server_get_space | - |
Kintone MCP Server_update_space | - |
Kintone MCP Server_update_space_body | - |
Kintone MCP Server_get_space_members | - |
MCP Notion Server_query_database | Query a database with filters and sorting |
MCP Notion Server_search | Search pages and databases |
MCP Notion Server_list_databases | List all accessible databases |
MCP Notion Server_create_database | Create a new database |
MCP Notion Server_create_page | Create a new page |
MCP Notion Server_update_page | Update an existing page |
MCP Notion Server_append_blocks | Append blocks to a page |
MCP Notion Server_delete_blocks | Delete blocks from a page |
MCP Notion Server_get_page | Retrieve a page by ID |
MCP Notion Server_get_database | Retrieve a database by ID |
Solana MCP Server_getSlot | Get the current slot |
Solana MCP Server_getBalance | Get balance for a Solana address |
Solana MCP Server_getKeypairInfo | Get information about a keypair from its secret key |
Solana MCP Server_getAccountInfo | Get detailed account information for a Solana address |
Solana MCP Server_transfer | Transfer SOL from your keypair to another address |
Deriv API MCP Server_get_active_symbols | - |
Deriv API MCP Server_get_account_balance | - |
Appwrite MCP Server_databases_create_document | Create document |
Appwrite MCP Server_databases_create_email_attribute | Create email attribute |
Appwrite MCP Server_databases_create_enum_attribute | Create enum attribute |
Appwrite MCP Server_databases_create_float_attribute | Create float attribute |
Appwrite MCP Server_databases_create_index | Create index |
Appwrite MCP Server_databases_create_integer_attribute | Create integer attribute |
Appwrite MCP Server_users_create | Create user |
Appwrite MCP Server_users_create_argon2_user | Create user with Argon2 password |
Appwrite MCP Server_users_create_bcrypt_user | Create user with bcrypt password |
Appwrite MCP Server_users_create_jwt | Create user JWT |
Appwrite MCP Server_users_create_md5_user | Create user with MD5 password |
Appwrite MCP Server_users_create_mfa_recovery_codes | Create MFA recovery codes |
Appwrite MCP Server_users_create_ph_pass_user | Create user with PHPass password |
Appwrite MCP Server_databases_create_ip_attribute | Create IP address attribute |
Appwrite MCP Server_users_create_scrypt_modified_user | Create user with Scrypt modified password |
Appwrite MCP Server_databases_create_relationship_attribute | Create relationship attribute |
Appwrite MCP Server_databases_update_datetime_attribute | Update dateTime attribute |
Appwrite MCP Server_databases_update_document | Update document |
Appwrite MCP Server_databases_update_email_attribute | Update email attribute |
Appwrite MCP Server_users_create_scrypt_user | Create user with Scrypt password |
Appwrite MCP Server_users_create_session | Create session |
Appwrite MCP Server_users_create_sha_user | Create user with SHA password |
Appwrite MCP Server_users_create_target | Create user target |
Appwrite MCP Server_users_delete | Delete user |
Appwrite MCP Server_users_create_token | Create token |
Appwrite MCP Server_users_delete_identity | Delete identity |
Appwrite MCP Server_users_delete_mfa_authenticator | Delete authenticator |
Appwrite MCP Server_users_delete_session | Delete user session |
Appwrite MCP Server_users_delete_sessions | Delete user sessions |
Appwrite MCP Server_users_delete_target | Delete user target |
Appwrite MCP Server_users_get | Get user |
Appwrite MCP Server_users_get_mfa_recovery_codes | Get MFA recovery codes |
Appwrite MCP Server_users_get_prefs | Get user preferences |
Appwrite MCP Server_users_get_target | Get user target |
Appwrite MCP Server_users_list | List users |
Appwrite MCP Server_users_update_status | Update user status |
Appwrite MCP Server_users_list_identities | List identities |
Appwrite MCP Server_users_list_logs | List user logs |
Appwrite MCP Server_users_list_memberships | List user memberships |
Appwrite MCP Server_users_list_mfa_factors | List factors |
Appwrite MCP Server_users_list_sessions | List user sessions |
Appwrite MCP Server_users_list_targets | List user targets |
Appwrite MCP Server_users_update_email | Update email |
Appwrite MCP Server_users_update_email_verification | Update email verification |
Appwrite MCP Server_users_update_labels | Update user labels |
Appwrite MCP Server_users_update_mfa | Update MFA |
Appwrite MCP Server_users_update_mfa_recovery_codes | Regenerate MFA recovery codes |
Appwrite MCP Server_users_update_name | Update name |
Appwrite MCP Server_users_update_password | Update password |
Appwrite MCP Server_users_update_phone | Update phone |
Appwrite MCP Server_users_update_phone_verification | Update phone verification |
Appwrite MCP Server_users_update_prefs | Update user preferences |
Appwrite MCP Server_users_update_target | Update user target |
Appwrite MCP Server_databases_create | Create database |
Appwrite MCP Server_databases_create_boolean_attribute | Create boolean attribute |
Appwrite MCP Server_databases_create_collection | Create collection |
Appwrite MCP Server_databases_create_datetime_attribute | Create datetime attribute |
Appwrite MCP Server_databases_get_document | Get document |
Appwrite MCP Server_databases_update_collection | Update collection |
Appwrite MCP Server_databases_get_index | Get index |
Appwrite MCP Server_databases_update_enum_attribute | Update enum attribute |
Appwrite MCP Server_databases_list | List databases |
Appwrite MCP Server_databases_list_attributes | List attributes |
Appwrite MCP Server_databases_list_collections | List collections |
Appwrite MCP Server_databases_list_documents | List documents |
Appwrite MCP Server_databases_list_indexes | List indexes |
Appwrite MCP Server_databases_update | Update database |
Appwrite MCP Server_databases_update_boolean_attribute | Update boolean attribute |
Appwrite MCP Server_databases_create_string_attribute | Create string attribute |
Appwrite MCP Server_databases_create_url_attribute | Create URL attribute |
Appwrite MCP Server_databases_delete | Delete database |
Appwrite MCP Server_databases_delete_attribute | Delete attribute |
Appwrite MCP Server_databases_delete_collection | Delete collection |
Appwrite MCP Server_databases_delete_document | Delete document |
Appwrite MCP Server_databases_delete_index | Delete index |
Appwrite MCP Server_databases_get | Get database |
Appwrite MCP Server_databases_get_attribute | Get attribute |
Appwrite MCP Server_databases_get_collection | Get collection |
Appwrite MCP Server_databases_update_float_attribute | Update float attribute |
Appwrite MCP Server_databases_update_integer_attribute | Update integer attribute |
Appwrite MCP Server_databases_update_ip_attribute | Update IP address attribute |
Appwrite MCP Server_databases_update_relationship_attribute | Update relationship attribute |
Appwrite MCP Server_databases_update_string_attribute | Update string attribute |
Appwrite MCP Server_databases_update_url_attribute | Update URL attribute |
Retrieval-Augmented Thinking MCP Server_rat | A context-aware reasoning system that orchestrates structured thought processes through dynamic trajectories. Core Capabilities:
Reasoning Patterns:
Parameters: thought: Structured reasoning step that supports: Primary analysis chains Hypothesis formulation/validation Branch exploration paths Revision proposals Context preservation markers Verification checkpoints next_thought_needed: Signal for continuation of reasoning chain thought_number: Position in current reasoning trajectory total_thoughts: Dynamic scope indicator (adjustable) is_revision: Marks recursive refinement steps revises_thought: References target of refinement branch_from_thought: Indicates parallel exploration paths branch_id: Context identifier for parallel chains needs_more_thoughts: Signals scope expansion requirement Execution Protocol:
The system maintains solution integrity through continuous validation cycles while supporting dynamic scope adjustment and non-linear exploration paths. |
World Bank MCP Server_get_indicator_for_country | Get values for an indicator for a specific country from the World Bank API |
JavaScript Sandbox MCP Server_execute_js | Execute JavaScript code in an isolated environment |
Image Generation MCP Server_generate_image | Generate an image based on the text prompt |
ScreenshotOne MCP Server_render-website-screenshot | Render a screenshot of a website and returns it as an image. |
Astra DB MCP Server_GetCollections | Get all collections in the Astra DB database |
Astra DB MCP Server_CreateCollection | Create a new collection in the database |
Astra DB MCP Server_UpdateCollection | Update an existing collection in the database |
Astra DB MCP Server_DeleteCollection | Delete a collection from the database |
Astra DB MCP Server_ListRecords | List records from a collection in the database |
Astra DB MCP Server_GetRecord | Get a specific record from a collection by ID |
Astra DB MCP Server_CreateRecord | Create a new record in a collection |
Astra DB MCP Server_UpdateRecord | Update an existing record in a collection |
Astra DB MCP Server_DeleteRecord | Delete a record from a collection |
Astra DB MCP Server_FindRecord | Find records in a collection by field value |
Perplexity MCP Server_perplexity_ask | Send a simple query to Perplexity AI |
Perplexity MCP Server_perplexity_chat | Generate a chat completion using Perplexity AI |
Bloomy MCP_get_query_details | Get detailed information about specific GraphQL queries. |
Bloomy MCP_get_mutation_details | Get detailed information about specific GraphQL mutations. |
Bloomy MCP_execute_query | Execute a GraphQL query or mutation with variables. |
Bloomy MCP_get_authenticated_user_id | Get the ID of the currently authenticated user. |
Tembo MCP Server_get_all_apps | Get attributes for all apps |
Tembo MCP Server_get_app | Get the attributes of a single App |
Tembo MCP Server_ask_tembo | Ask a question to Tembo Docs |
Tembo MCP Server_get_instance_schema | Get the json-schema for an instance |
Tembo MCP Server_get_all_instances | Get all Tembo instances in an organization |
Tembo MCP Server_create_instance | Create a new Tembo instance |
Tembo MCP Server_get_instance | Get an existing Tembo instance |
Tembo MCP Server_delete_instance | Delete an existing Tembo instance |
Tembo MCP Server_patch_instance | Update attributes on an existing Tembo instance |
Tembo MCP Server_restore_instance | Restore a Tembo instance |
blastengine-mailer_send_email | Send an email using Blastengine API |
Fireflies MCP Server_fireflies_generate_summary | Generate a summary of a meeting transcript |
Fireflies MCP Server_fireflies_get_transcripts | Retrieve a list of meeting transcripts with optional filtering. By default, returns up to 20 most recent transcripts with no date filtering. Note that this operation may take longer for large datasets and might timeout. If a timeout occurs, a minimal set of transcript data will be returned. |
Fireflies MCP Server_fireflies_get_transcript_details | Retrieve detailed information about a specific transcript. Returns a human-readable formatted transcript with speaker names and text, along with metadata and summary information. |
Fireflies MCP Server_fireflies_search_transcripts | Search for transcripts containing specific keywords, with optional date filtering. Returns a human-readable list of matching transcripts with metadata and summary information. |
Elasticsearch 7.x MCP Server_es-ping | Ping Elasticsearch server |
Elasticsearch 7.x MCP Server_es-info | Get Elasticsearch info |
Elasticsearch 7.x MCP Server_es-search | Search documents in Elasticsearch index |
DeepSeek MCP Server_reason | |
MCP Server Discord Webhook_send_message | Discord |
Grants Search MCP Server_search-grants | Search for government grants based on keywords |
Tox Testing MCP Server_run_tox_tests | Run tox tests with different modes and options |
Needle MCP Server_needle_list_collections | Retrieve a complete list of all Needle document collections accessible to your account. Returns detailed information including collection IDs, names, and creation dates. Use this tool when you need to: - Get an overview of available document collections - Find collection IDs for subsequent operations - Verify collection existence before performing operations The response includes metadata that's required for other Needle operations. |
Needle MCP Server_needle_create_collection | Create a new document collection in Needle for organizing and searching documents. A collection acts as a container for related documents and enables semantic search across its contents. Use this tool when you need to: - Start a new document organization - Group related documents together - Set up a searchable document repository Returns a collection ID that's required for subsequent operations. Choose a descriptive name that reflects the collection's purpose for better organization. |
Needle MCP Server_needle_get_collection_details | Fetch comprehensive metadata about a specific Needle collection. Provides detailed information about the collection's configuration, creation date, and current status. Use this tool when you need to: - Verify a collection's existence and configuration - Check collection metadata before operations - Get creation date and other attributes Requires a valid collection ID and returns detailed collection metadata. Will error if collection doesn't exist. |
Needle MCP Server_needle_get_collection_stats | Retrieve detailed statistical information about a Needle collection's contents and status. Provides metrics including: - Total number of documents - Processing status of documents - Storage usage and limits - Index status and health Use this tool to: - Monitor collection size and growth - Verify processing completion - Check collection health before operations Essential for ensuring collection readiness before performing searches. |
Needle MCP Server_needle_list_files | List all documents stored within a specific Needle collection with their current status. Returns detailed information about each file including: - File ID and name - Processing status (pending, processing, complete, error) - Upload date and metadata Use this tool when you need to: - Inventory available documents - Check processing status of uploads - Get file IDs for reference - Verify document availability before searching Essential for monitoring document processing completion before performing searches. |
Needle MCP Server_needle_add_file | Add a new document to a Needle collection by providing a URL for download. Supports multiple file formats including: - PDF documents - Microsoft Word files (DOC, DOCX) - Plain text files (TXT) - Web pages (HTML) |
Needle MCP Server_needle_search | Perform intelligent semantic search across documents in a Needle collection. This tool uses advanced embedding technology to find relevant content based on meaning, not just keywords. The search: - Understands natural language queries - Finds conceptually related content - Returns relevant text passages with source information - Ranks results by semantic relevance |
Iris MCP Server_generate_release_note | - |
BluestoneApps MCP Remote Server_get_project_structure | Get project structure standards for React Native development |
BluestoneApps MCP Remote Server_get_api_communication | Get API communication standards for React Native development |
BluestoneApps MCP Remote Server_get_component_design | Get component design standards for React Native development |
BluestoneApps MCP Remote Server_get_state_management | Get state management standards for React Native development |
BluestoneApps MCP Remote Server_get_component_example | Get a React Native component example |
BluestoneApps MCP Remote Server_get_hook_example | Get a React Native hook example |
BluestoneApps MCP Remote Server_get_service_example | Get a React Native service example |
BluestoneApps MCP Remote Server_get_screen_example | Get a React Native screen example |
BluestoneApps MCP Remote Server_get_theme_example | Get code for a React Native theme |
BluestoneApps MCP Remote Server_list_available_examples | List all available code examples by category |
GitHub Projects MCP Server_create-issue | Create a new GitHub issue |
GitHub Projects MCP Server_update-issue | Update an existing GitHub issue |
GitHub Projects MCP Server_get-repository | Get a GitHub repository by owner and name |
GitHub Projects MCP Server_list-repositories | List repositories for a user |
GitHub Projects MCP Server_get-project | Get a GitHub Project by ID |
GitHub Projects MCP Server_list-projects | List GitHub Projects for a user |
GitHub Projects MCP Server_get-project-columns | Get status columns for a GitHub Project |
GitHub Projects MCP Server_get-project-fields | Get fields for a GitHub Project |
GitHub Projects MCP Server_get-project-items | Get items (issues) from a GitHub Project |
GitHub Projects MCP Server_create-project-item | Add an issue or PR to a GitHub Project |
GitHub Projects MCP Server_update-project-item-field | Update a field value for a project item |
GitHub Projects MCP Server_create-project | Create a new GitHub Project |
GitHub Projects MCP Server_update-project | Update an existing GitHub Project |
GitHub Projects MCP Server_delete-project | Delete a GitHub Project |
GitHub Projects MCP Server_copy-project | Copy a GitHub Project |
GitHub Projects MCP Server_add-draft-issue | Add a draft issue to a GitHub Project |
GitHub Projects MCP Server_convert-draft-issue | Convert a draft issue to a regular issue |
GitHub Projects MCP Server_add-item-to-project | Add an existing issue or PR to a GitHub Project |
GitHub Projects MCP Server_update-item-position | Update the position of an item in a GitHub Project |
GitHub Projects MCP Server_delete-project-item | Remove an item from a GitHub Project |
GitHub Projects MCP Server_create-project-field | Create a new field in a GitHub Project |
GitHub Projects MCP Server_update-project-field | Update a field in a GitHub Project |
GitHub Projects MCP Server_delete-project-field | Delete a field from a GitHub Project |
GitHub Projects MCP Server_update-project-status | Update the status of a GitHub Project |
GitHub Projects MCP Server_archive-project-item | Archive an item in a GitHub Project |
GitHub Projects MCP Server_unarchive-project-item | Unarchive an item in a GitHub Project |
GitHub Projects MCP Server_clear-item-field-value | Clear a field value for an item in a GitHub Project |
GitHub Projects MCP Server_mark-project-as-template | Mark a GitHub Project as a template |
GitHub Projects MCP Server_unmark-project-as-template | Unmark a GitHub Project as a template |
GitHub Projects MCP Server_get-issue | Get a GitHub issue by number |
GitHub Projects MCP Server_list-issues | List issues for a repository |
SourceSage MCP_generate_structure | - |
Spotify MCP_get_my_playlists | |
Spotify MCP_start_playback | |
Spotify MCP_pause_playback | |
Spotify MCP_search_spotify | |
Spotify MCP_next_track | Skip to next track in queue |
Spotify MCP_previous_track | Go back to previous track |
Spotify MCP_seek_position | |
Spotify MCP_get_playback_state | Get current playback information |
Spotify MCP_get_recommendations | |
Spotify MCP_get_item_info | |
Spotify MCP_start_playback_track | |
Spotify MCP_get_top_artists | |
Spotify MCP_get_queue | Get the current queue of tracks |
Spotify MCP_add_to_queue | |
Spotify MCP_skip_tracks | |
Spotify MCP_set_repeat_mode | |
Spotify MCP_get_current_track | Get information about the currently playing track |
Spotify MCP_start_playlist_playback | |
Spotify MCP_get_artist_top_tracks | |
Spotify MCP_add_to_playlist | |
Spotify MCP_reorder_queue | |
Perplexity MCP Server_search | Search the web using Perplexity AI |
Perplexity MCP Server_domain_filter | Add a domain to allow or block in search results (max 3 domains per type) |
Perplexity MCP Server_recency_filter | Set the time recency for search results |
Perplexity MCP Server_clear_filters | Clear all domain filters |
Perplexity MCP Server_list_filters | List all current domain filters |
Perplexity MCP Server_model_info | Get information about available models and optionally set a specific model |
Scrapbox MCP Server_get_page_content | Fetch content from a Scrapbox page by URL |
MCP Jupiter_jupiter_get_quote | Get a quote for swapping tokens on Jupiter |
MCP Jupiter_jupiter_build_swap_transaction | Build a swap transaction on Jupiter |
MCP Jupiter_jupiter_send_swap_transaction | Send a swap transaction on Jupiter |
AWS MCP Server_s3_bucket_create | Create a new S3 bucket |
AWS MCP Server_s3_bucket_list | List all S3 buckets |
AWS MCP Server_s3_bucket_delete | Delete an S3 bucket |
AWS MCP Server_s3_object_upload | Upload an object to S3 |
AWS MCP Server_s3_object_delete | Delete an object from S3 |
AWS MCP Server_s3_object_list | List objects in an S3 bucket |
AWS MCP Server_s3_object_read | Read an object's content from S3 |
AWS MCP Server_dynamodb_item_get | Get an item from a DynamoDB table |
AWS MCP Server_dynamodb_table_create | Create a new DynamoDB table |
AWS MCP Server_dynamodb_table_describe | Get details about a DynamoDB table |
AWS MCP Server_dynamodb_table_list | List all DynamoDB tables |
AWS MCP Server_dynamodb_table_delete | Delete a DynamoDB table |
AWS MCP Server_dynamodb_table_update | Update a DynamoDB table |
AWS MCP Server_dynamodb_item_put | Put an item into a DynamoDB table |
AWS MCP Server_dynamodb_item_update | Update an item in a DynamoDB table |
AWS MCP Server_dynamodb_item_delete | Delete an item from a DynamoDB table |
AWS MCP Server_dynamodb_item_query | Query items in a DynamoDB table |
AWS MCP Server_dynamodb_item_scan | Scan items in a DynamoDB table |
AWS MCP Server_dynamodb_batch_get | Batch get multiple items from DynamoDB tables |
AWS MCP Server_dynamodb_item_batch_write | Batch write operations (put/delete) for DynamoDB items |
AWS MCP Server_dynamodb_describe_ttl | Get the TTL settings for a table |
AWS MCP Server_dynamodb_update_ttl | Update the TTL settings for a table |
AWS MCP Server_dynamodb_batch_execute | Execute multiple PartiQL statements in a batch |
Elasticsearch Knowledge Graph for MCP_create_entities | Create entities in knowledge graph (memory) |
Elasticsearch Knowledge Graph for MCP_update_entities | Update entities in knowledge graph (memory) |
Elasticsearch Knowledge Graph for MCP_delete_entities | Delete entities from knowledge graph (memory) |
Elasticsearch Knowledge Graph for MCP_create_relations | Create relationships between entities in knowledge graph (memory) |
Elasticsearch Knowledge Graph for MCP_delete_relations | Delete relationships from knowledge graph (memory) |
Elasticsearch Knowledge Graph for MCP_search_nodes | Search entities using ElasticSearch query syntax. Supports boolean operators (AND, OR, NOT), fuzzy matching ( |
Elasticsearch Knowledge Graph for MCP_open_nodes | Get details about specific entities in knowledge graph (memory) and their relations |
Elasticsearch Knowledge Graph for MCP_add_observations | Add observations to an existing entity in knowledge graph (memory) |
Elasticsearch Knowledge Graph for MCP_mark_important | Mark entity as important in knowledge graph (memory) by boosting its relevance score |
Elasticsearch Knowledge Graph for MCP_get_recent | Get recently accessed entities from knowledge graph (memory) and their relations |
Elasticsearch Knowledge Graph for MCP_list_zones | List all available memory zones with metadata. |
Elasticsearch Knowledge Graph for MCP_create_zone | Create a new memory zone with optional description. |
Elasticsearch Knowledge Graph for MCP_delete_zone | Delete a memory zone and all its entities/relations. |
Elasticsearch Knowledge Graph for MCP_copy_entities | Copy entities between zones with optional relation handling. |
Elasticsearch Knowledge Graph for MCP_move_entities | Move entities between zones (copy + delete from source). |
Elasticsearch Knowledge Graph for MCP_merge_zones | Merge multiple zones with conflict resolution options. |
Elasticsearch Knowledge Graph for MCP_zone_stats | Get statistics for entities and relationships in a zone. |
Sentry MCP Server_list_projects | List accessible Sentry projects. View project slugs, IDs, status, settings, features, and organization details. |
Sentry MCP Server_resolve_short_id | Retrieve details about an issue using its short ID. Maps short IDs to issue details, project context, and status. |
Sentry MCP Server_get_sentry_event | Retrieve a specific Sentry event from an issue. Requires issue ID/URL and event ID. |
Sentry MCP Server_list_error_events_in_project | List error events from a specific Sentry project. View recent errors, frequency patterns, and occurrence timestamps. |
Sentry MCP Server_create_project | Create a new project in Sentry. Track deployments, releases, and health metrics. |
Sentry MCP Server_list_project_issues | List issues from a Sentry project. Monitor issue status, severity, frequency, and timing. |
Sentry MCP Server_list_issue_events | List events for a specific Sentry issue. Analyze event details, metadata, and patterns. |
Sentry MCP Server_get_sentry_issue | Retrieve and analyze a Sentry issue. Accepts issue URL or ID. |
Sentry MCP Server_list_organization_replays | List replays from a Sentry organization. Monitor user sessions, interactions, errors, and experience issues. |
Sentry MCP Server_setup_sentry | Set up Sentry for a project returning a dsn and instructions for setup. |
Emergency Medicare Planner MCP Server_get_emergency_contacts | Retrieves emergency contact information for a specific location |
Emergency Medicare Planner MCP Server_find_nearby_medical_facilities | Finds hospitals and clinics nearby user location that match specific requirements |
Emergency Medicare Planner MCP Server_check_medicare_coverage | Checks what treatments and procedures are covered by Medicare |
Emergency Medicare Planner MCP Server_schedule_emergency_transport | Arranges emergency medical transportation |
Emergency Medicare Planner MCP Server_sequentialthinking | A detailed tool for dynamic and reflective medical problem-solving through thoughts. This tool helps analyze medical problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding of the medical situation deepens. When to use this tool:
Key features:
|
IP Geolocation MCP Server_get_ip_details | Get information about an IP address. Use this tool to:
Args: ip (str | None): The IP address to look up. If None, returns information about the requesting client's IP address. ctx (Context): The MCP request context. Returns: IPDetails: Object containing information about the IP address, including geographic location, network operator, and more. Note: This tool requires an IPInfo API Token specified via the IPINFO_API_TOKEN environment variable for full functionality. |
Whois MCP_whois_domain | Looksup whois information about the domain |
Whois MCP_whois_tld | Looksup whois information about the Top Level Domain (TLD) |
Whois MCP_whois_ip | Looksup whois information about the IP |
Whois MCP_whois_as | Looksup whois information about the Autonomous System Number (ASN) |
GitHub MCP Server_create_repo | Create or update GitHub repositories using natural language commands |
MCP Server Linear_linear-search-issues | Search for issues in Linear |
Claude-GAS-Bridge_execute-gas | Execute custom GAS script |
Microsoft SQL Server MCP Server_execute_sql | Execute an SQL query on the SQL Server |
Python Docs Server_get_python_docs | Get Python documentation for a given query |
MCP-AnkiConnect_list_decks_and_notes | Get all decks and note types with their fields |
MCP-AnkiConnect_num_cards_due_today | Get the number of cards due today with an optional deck filter |
MCP-AnkiConnect_get_examples | Get example notes from Anki to guide your flashcard making. Limit the number of examples returned and provide a sampling technique: |
MCP-AnkiConnect_fetch_due_cards_for_review | Fetch cards that are due for learning and format them for review. Takes optional arguments: - deck: str - Filter by specific deck. - limit: int - Maximum number of cards to fetch (default 5). More than 5 is overwhelming for users. - today_only: bool - If true, only fetch cards due today, else fetch cards up to 5 days ahead. |
MCP-AnkiConnect_submit_reviews | Submit multiple card reviews to Anki. |
MCP-AnkiConnect_add_note | Add a flashcard to Anki. Ensure you have looked at examples before you do this, and that you have got approval from the user to add the flashcard. Args: deckName: str - The name of the deck to add the flashcard to. modelName: str - The name of the note type to use. fields: dict - The fields of the flashcard to add. tags: List[str] - The tags to add to the flashcard. |
SolarWinds Logs MCP Server_search_logs | Search SolarWinds Observability logs with optional filtering |
SolarWinds Logs MCP Server_visualize_logs | Generate a histogram visualization of log events |
DeltaTask MCP Server_get_task_by_id | Get details for a specific task by ID. |
DeltaTask MCP Server_search_tasks | Search tasks by title, description, or tags. |
DeltaTask MCP Server_create_task | Create a new task. |
DeltaTask MCP Server_update_task | Update an existing task. |
DeltaTask MCP Server_delete_task | Delete a task. |
DeltaTask MCP Server_sync_tasks | Sync tasks from Obsidian markdown into SQLite. |
DeltaTask MCP Server_list_tasks | List all tasks with optional tags, if you user asks for a tag, please provide it in the request. |
DeltaTask MCP Server_get_statistics | Get task statistics including completion rates and urgency distribution. |
DeltaTask MCP Server_create_subtasks | Create multiple subtasks for a parent task with categories. |
DeltaTask MCP Server_get_all_tags | Get all unique tag names used in tasks. |
DeltaTask MCP Server_get_subtasks | Get subtasks for a given parent task ID. |
DeltaTask MCP Server_finish_task | Mark a task as completed. |
Excel Reader Server_read_excel | Read content from Excel (xlsx) files |
Excel Reader Server_read_excel_by_sheet_name | Read content from a specific sheet by name in Excel (xlsx) files. Reads first sheet if sheet_name not provided. |
Excel Reader Server_read_excel_by_sheet_index | Read content from a specific sheet by index in Excel (xlsx) files. Reads first sheet (index 0) if sheet_index not provided. |
Dub.co MCP Server_create_link | Create a new short link on dub.co, asking the user which domain to use |
Dub.co MCP Server_update_link | Update an existing short link on dub.co |
Dub.co MCP Server_upsert_link | Create or update a short link on dub.co, asking the user which domain to use if creating |
Dub.co MCP Server_delete_link | Delete a short link on dub.co |
Command Executor MCP Server_execute_command | - |
Confluence Communication Server_execute_cql_search | Execute a CQL query on Confluence to search pages |
Confluence Communication Server_get_page_content | Get the content of a Confluence page |
Image Generator MCP Server_generate_image | Generate an image from a prompt. |
Todoist MCP_get-tasks | Get all tasks from Todoist |
Todoist MCP_update-task | Update a task in Todoist |
Todoist MCP_close-task | Close (complete) a task in Todoist |
Todoist MCP_move-task-to-project | Move a task to a different project in Todoist |
Todoist MCP_move-task-to-section | Move a task to a different section in Todoist |
Todoist MCP_delete-task | Delete a task from a project in Todoist |
Todoist MCP_reopen-task | Reopens a previously closed (completed) task in Todoist |
Todoist MCP_add-section | Add a section to a project in Todoist |
Todoist MCP_get-section | Get section details in Todoist |
Todoist MCP_get-sections | Get all sections from a project in Todoist |
Todoist MCP_update-section | Update a section in Todoist |
Todoist MCP_delete-section | Delete a section from a project in Todoist |
Todoist MCP_add-comment-to-project | Add a comment to a project in Todoist |
Todoist MCP_add-comment-to-task | Add a comment to a task in Todoist |
Todoist MCP_get-comment | Get a comment from a task or project in Todoist |
Todoist MCP_update-comment | Update a comment in Todoist |
Todoist MCP_delete-comment | Delete a comment from a task in Todoist |
Todoist MCP_get-task-comments | Get comments from a task in Todoist |
Todoist MCP_get-project-comments | Get comments from a project in Todoist |
Todoist MCP_add-label | Add a label to a task in Todoist |
Todoist MCP_delete-label | Delete a label from Todoist |
Todoist MCP_update-label | Update a label in Todoist |
Todoist MCP_get-label | Get a label from Todoist |
Todoist MCP_get-labels | Get all labels in Todoist |
Todoist MCP_get-shared-labels | Retrieves a list of shared labels in Todoist |
Todoist MCP_remove-shared-label | Remove shared label in Todoist |
Todoist MCP_rename-shared-label | Rename a shared label in Todoist |
Todoist MCP_add-project | Add a project to Todoist |
Todoist MCP_get-projects | Get all projects from Todoist |
Todoist MCP_get-project | Get a project from Todoist |
Todoist MCP_update-project | Update a project in Todoist |
Todoist MCP_delete-project | Delete a project in Todoist |
Todoist MCP_move-task-to-parent | Move a task to a parent in Todoist |
Todoist MCP_get-project-collaborators | Get all collaborators from a project in Todoist |
Todoist MCP_add-task | Add a task to Todoist |
Todoist MCP_get-task | Retrieves a task by its ID in Todoist |
Hyperliquid MCP Server_get_all_mids | Get mid prices for all coins on Hyperliquid |
Hyperliquid MCP Server_get_candle_snapshot | Get candlestick data for a token on Hyperliquid |
Hyperliquid MCP Server_get_l2_book | Get the L2 book of a token on Hyperliquid |
MCP Client Configuration Server_get_configuration_path | Get the path to the configuration file for a specific client |
MCP Client Configuration Server_get_configuration | Get the entire configuration for a specific client |
MCP Client Configuration Server_list_servers | List all server names configured in a specific client |
MCP Client Configuration Server_get_server_configuration | Get the configuration for a specific server from a client configuration |
MCP Client Configuration Server_add_server_configuration | Add or update a server configuration in a client configuration |
MCP Client Configuration Server_remove_server_configuration | Remove a server configuration from a client configuration |
Perplexity Tool for Claude Desktop_ask_perplexity | Ask a question to Perplexity AI |
Memory Cache MCP Server_store_data | Store data in the cache with optional TTL |
Memory Cache MCP Server_retrieve_data | Retrieve data from the cache |
Memory Cache MCP Server_clear_cache | Clear specific or all cache entries |
Memory Cache MCP Server_get_cache_stats | Get cache statistics |
OpenAPI Client Generator MCP_generate_client | Generate TypeScript API client from OpenAPI specification |
Hacker News MCP Server_search | Search for stories and comments on Hacker News |
Hacker News MCP Server_getComments | Get comments for a story |
Hacker News MCP Server_getStory | Get a single story by ID |
Hacker News MCP Server_getStoryWithComments | Get a story with its comments |
Hacker News MCP Server_getStories | Get multiple stories by type (top, new, best, ask, show, job) |
Hacker News MCP Server_getComment | Get a single comment by ID |
Hacker News MCP Server_getCommentTree | Get a comment tree for a story |
Hacker News MCP Server_getUser | Get a user profile by ID |
Hacker News MCP Server_getUserSubmissions | Get a user's submissions |
Ethereum RPC MCP Server_eth_getCode | Retrieves the code at a given Ethereum address |
Ethereum RPC MCP Server_eth_gasPrice | Retrieves the current gas price in wei |
Ethereum RPC MCP Server_eth_getBalance | Retrieves the balance of a given Ethereum address |
Ethereum RPC MCP Server_eth_call | Executes a call to a contract function without creating a transaction |
Ethereum RPC MCP Server_eth_getLogs | Retrieves logs matching the given filter criteria |
Ethereum RPC MCP Server_eth_sendTransaction | Sends a transaction to the Ethereum network |
MCP Paradex Server_paradex-account-summary | |
MCP Paradex Server_paradex-account-positions | |
MCP Paradex Server_paradex-system-config | |
MCP Paradex Server_paradex-system-time | |
MCP Paradex Server_paradex-system-state | |
MCP Paradex Server_paradex-vault-list | |
MCP Paradex Server_paradex-vault-details | |
MCP Paradex Server_paradex-vaults-config | |
MCP Paradex Server_paradex-market-names | |
MCP Paradex Server_paradex-market-details | |
MCP Paradex Server_paradex-vault-balance | |
MCP Paradex Server_paradex-vault-summary | |
MCP Paradex Server_paradex-vault-transfers | |
MCP Paradex Server_paradex-vault-positions | |
MCP Paradex Server_paradex-vault-account-summary | |
MCP Paradex Server_paradex-market-summary | |
MCP Paradex Server_paradex-funding-data | |
MCP Paradex Server_paradex-bbo | |
MCP Paradex Server_paradex-orderbook | |
MCP Paradex Server_paradex-klines | |
MCP Paradex Server_paradex-trades | |
MCP Paradex Server_paradex-account-fills | |
MCP Paradex Server_paradex-account-funding-payments | |
MCP Paradex Server_paradex-account-open-orders | |
MCP Paradex Server_paradex-create-order | |
MCP Paradex Server_paradex-cancel-order | |
MCP Paradex Server_paradex-cancel-all-orders | |
MCP Paradex Server_paradex-get-order-status | |
Letta MCP Server_create_agent | Create a new Letta agent with specified configuration |
Letta MCP Server_list_agents | List all available agents in the Letta system |
Letta MCP Server_prompt_agent | Send a message to an agent and get a response |
Letta MCP Server_list_agent_tools | List all tools available for a specific agent |
Letta MCP Server_list_tools | List all available tools on the Letta server |
Letta MCP Server_attach_tool | Attach a tool to an agent |
Letta MCP Server_list_memory_blocks | List all memory blocks available in the Letta system |
Letta MCP Server_attach_memory_block | Attach a memory block to an agent |
Letta MCP Server_create_memory_block | Create a new memory block in the Letta system |
Airtable MCP Server_list_tables | List all tables in a base |
Airtable MCP Server_list_bases | List all accessible Airtable bases |
Airtable MCP Server_create_table | Create a new table in a base |
Airtable MCP Server_update_table | Update a table's schema |
Airtable MCP Server_create_field | Create a new field in a table |
Airtable MCP Server_update_field | Update a field in a table |
Airtable MCP Server_list_records | List records in a table |
Airtable MCP Server_create_record | Create a new record in a table |
Airtable MCP Server_update_record | Update an existing record in a table |
Airtable MCP Server_delete_record | Delete a record from a table |
Airtable MCP Server_search_records | Search for records in a table |
Airtable MCP Server_get_record | Get a single record by its ID |
Specif-ai MCP Server_set-project-path | Set the project path and reload the solution, use this tool only when we not automatically able to infer the project path or asked by the user or us., we will try to auto infer it from the environment first. |
Specif-ai MCP Server_get-brds | Get Business Requirement Documents for this project |
Specif-ai MCP Server_get-prds | Get Product Requirement Documents for this project |
Specif-ai MCP Server_get-nfrs | Get Non-Functional Requirement Documents for this project |
Specif-ai MCP Server_get-uirs | Get User Interface Requirement Documents for this project |
Specif-ai MCP Server_get-bps | Get Business Process Documents for this project |
Specif-ai MCP Server_get-user-stories | Get User Stories for a particular PRD |
Specif-ai MCP Server_get-tasks | Get Tasks for a particular User Story |
Specif-ai MCP Server_get-task | Get a Task for a particular User Story in a particular PRD |
MCPunk_get_a_joke | Get a really funny joke! For testing :) |
MCPunk_configure_project | Configure a new project containing files. |
MCPunk_list_all_files_in_project | List all files in a project, returning a file tree. |
MCPunk_find_files_by_chunk_content | Step 1: Find files containing chunks with matching text. |
MCPunk_find_matching_chunks_in_file | Step 2: Find the actual matching chunks in a specific file. |
MCPunk_chunk_details | Get full content of a specific chunk. |
MCPunk_list_most_recently_checked_out_branches | List the n most recently checked out branches in the project |
MCPunk_diff_with_ref | Return a summary of the diff between HEAD and the given ref. |
Data.gov MCP Server_package_search | Search for packages (datasets) on Data.gov |
Data.gov MCP Server_package_show | Get details for a specific package (dataset) |
Data.gov MCP Server_group_list | List groups on Data.gov |
Data.gov MCP Server_tag_list | List tags on Data.gov |
MCP Calc Tools_derivative | Calculate the derivative of a mathematical expression |
MCP Calc Tools_integral | Calculate the indefinite integral of a mathematical expression |
MCP Calc Tools_riemann_sum | Calculate the Riemann sum of a function using different methods |
MCP Calc Tools_area | Calculate the area under a curve between two points |
MCP Calc Tools_volume | Calculate the volume of revolution around x-axis |
MCP Calc Tools_logarithm | Calculate logarithm with any base |
MCP Calc Tools_exponential | Calculate exponential function (e^x) |
MCP Calc Tools_compound_interest | Calculate compound interest |
MCP Calc Tools_present_value | Calculate present value of future cash flows |
MCP Calc Tools_npv | Calculate Net Present Value of cash flows |
MCP Calc Tools_darboux_sum | Calculate the Darboux sum of a function |
MCP Calc Tools_limit | Calculate the limit of a function as it approaches a value |
MCP Calc Tools_solve | Solve an equation for a variable |
MCP Calc Tools_laplace_transform | Calculate the Laplace transform of a function |
MCP Calc Tools_fourier_transform | Calculate the Fourier transform of a function |
MCP Calc Tools_z_transform | Calculate the Z-transform of a function |
MCP Calc Tools_black_scholes | Calculate Black-Scholes option price |
MCP Calc Tools_option_greeks | Calculate the Greeks for a Black-Scholes option |
Lichess MCP_unblock_user | Unblock a user |
Lichess MCP_get_user_profile | Get a user's Lichess profile information |
Lichess MCP_get_my_email | Get your email address |
Lichess MCP_get_kid_mode | Get kid mode status |
Lichess MCP_set_kid_mode | Set kid mode status |
Lichess MCP_create_challenge | Create a new challenge |
Lichess MCP_set_token | Set your Lichess API token |
Lichess MCP_get_my_profile | Get your Lichess profile information |
Lichess MCP_make_move | Make a move in an ongoing game |
Lichess MCP_get_preferences | Get your preferences |
Lichess MCP_get_timeline | Get your timeline |
Lichess MCP_test_tokens | Test multiple OAuth tokens |
Lichess MCP_revoke_token | Revoke the current access token |
Lichess MCP_upgrade_to_bot | Upgrade to Bot account. WARNING: This is irreversible and the account must not have played any games. |
Lichess MCP_add_user_note | Add a private note about a user |
Lichess MCP_send_message | Send a private message to another player |
Lichess MCP_get_following | Get users followed by the logged in user |
Lichess MCP_follow_user | Follow a player |
Lichess MCP_unfollow_user | Unfollow a player |
Lichess MCP_block_user | Block a player |
Lichess MCP_get_users_status | Get real-time users status |
Lichess MCP_get_all_top_10 | Get the top 10 players for each speed and variant |
Lichess MCP_get_leaderboard | Get the leaderboard for a single speed or variant |
Lichess MCP_get_user_public_data | Get public data of a user |
Lichess MCP_get_rating_history | Get rating history of a user for all perf types |
Lichess MCP_get_user_performance | Get performance statistics of a user |
Lichess MCP_get_user_activity | Get activity feed of a user |
Lichess MCP_get_users_by_id | Get multiple users by their IDs |
Lichess MCP_export_game | Export one game in PGN or JSON format |
Lichess MCP_export_ongoing_game | Export ongoing game of a user |
Lichess MCP_export_user_games | Export all games of a user |
Lichess MCP_export_games_by_ids | Export multiple games by IDs |
Lichess MCP_get_tv_channels | Get all TV channels and their current games |
Lichess MCP_get_tv_game | Get current TV game in PGN format |
Lichess MCP_get_puzzle_activity | Get your puzzle activity |
Lichess MCP_get_puzzle_dashboard | Get your puzzle dashboard |
Lichess MCP_get_puzzle_race | Get info about a puzzle race |
Lichess MCP_create_puzzle_race | Create a puzzle race |
Lichess MCP_get_puzzle_storm_dashboard | Get your puzzle storm dashboard |
Lichess MCP_get_team_info | Get team information by ID |
Lichess MCP_get_team_members | Get members of a team |
Lichess MCP_get_team_join_requests | Get join requests for a team |
Lichess MCP_join_team | Join a team |
Lichess MCP_leave_team | Leave a team |
Lichess MCP_kick_user_from_team | Kick a user from your team |
Lichess MCP_accept_join_request | Accept a join request for your team |
Lichess MCP_decline_join_request | Decline a join request for your team |
Lichess MCP_search_teams | Search for teams |
Lichess MCP_make_board_move | Make a move in a board game |
Lichess MCP_abort_board_game | Abort a board game |
Lichess MCP_resign_board_game | Resign a board game |
Lichess MCP_write_in_chat | Write in the chat of a board game |
Lichess MCP_handle_draw_board_game | Handle draw offers for a board game |
Lichess MCP_claim_victory | Claim victory if opponent abandoned the game |
Lichess MCP_list_challenges | List incoming and outgoing challenges |
GitLab Kanban MCP Server_list_tasks | - |
GitLab Kanban MCP Server_create_task | - |
GitLab Kanban MCP Server_update_task | - |
GitLab Kanban MCP Server_delete_task | - |
GitLab Kanban MCP Server_add_comment | - |
iMessage MCP Server_send_imessage | Send an iMessage using Messages app |
iMessage MCP Server_search_contacts | Search contacts by name, phone, or email |
CouchDB MCP Server_createDatabase | Create a new CouchDB database |
CouchDB MCP Server_listDatabases | List all CouchDB databases |
CouchDB MCP Server_deleteDatabase | Delete a CouchDB database |
CouchDB MCP Server_createDocument | Create a new document or update an existing document in a database |
CouchDB MCP Server_getDocument | Get a document from a database |
CouchDB MCP Server_createMangoIndex | Create a new Mango index (CouchDB 3.x+) |
CouchDB MCP Server_deleteMangoIndex | Delete a Mango index (CouchDB 3.x+) |
CouchDB MCP Server_listMangoIndexes | List all Mango indexes in a database (CouchDB 3.x+) |
CouchDB MCP Server_findDocuments | Query documents using Mango query (CouchDB 3.x+) |
Memory Box MCP Server_save_memory | Save a memory to Memory Box with proper formatting |
Memory Box MCP Server_search_memories | Search for memories using semantic search |
Memory Box MCP Server_get_all_memories | Retrieve all memories |
Memory Box MCP Server_get_bucket_memories | Get memories from a specific bucket |
Memory Box MCP Server_format_memory | Format a text according to the memory system prompt without saving |
Memory Box MCP Server_get_usage_stats | Retrieve user usage statistics and plan information |
JSON MCP Server_query | Query JSON data using JSONPath syntax |
JSON MCP Server_filter | Filter JSON data using conditions |
Draw Things MCP_generateImage | Generate an image based on a prompt |
Jenkins Server MCP_get_build_status | Get the status of a Jenkins build |
Jenkins Server MCP_trigger_build | Trigger a new Jenkins build |
Jenkins Server MCP_get_build_log | Get the console output of a Jenkins build |
MCP Server for Apache OpenDAL_list | |
MCP Server for Apache OpenDAL_read | |
MCP Server for Apache OpenDAL_get_info | |
Salesforce MCP Server_salesforce_search_objects | Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc. |
Salesforce MCP Server_salesforce_describe_object | Get detailed schema metadata including all fields, relationships, and field properties of any Salesforce object. Examples: 'Account' shows all Account fields including custom fields; 'Case' shows all Case fields including relationships to Account, Contact etc. |
Salesforce MCP Server_salesforce_query_records | Query records from any Salesforce object using SOQL, including relationship queries. Examples:
Note: When using relationship fields:
|
Salesforce MCP Server_salesforce_dml_records | Perform data manipulation operations on Salesforce records:
|
Salesforce MCP Server_salesforce_manage_object | Create new custom objects or modify existing ones in Salesforce:
|
Salesforce MCP Server_salesforce_manage_field | Create new custom fields or modify existing fields on any Salesforce object:
|
Salesforce MCP Server_salesforce_search_all | Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language). Examples:
Notes:
|
Math-MCP_add | Adds two numbers together |
Math-MCP_subtract | Subtracts the second number from the first number |
Math-MCP_multiply | Multiplies two numbers together |
Math-MCP_division | Divides the first number by the second number |
Math-MCP_sum | Adds any number of numbers together |
Math-MCP_mean | Calculates the arithmetic mean of a list of numbers |
Math-MCP_median | Calculates the median of a list of numbers |
Math-MCP_mode | Finds the most common number in a list of numbers |
Math-MCP_min | Finds the minimum value from a list of numbers |
Math-MCP_max | Finds the maximum value from a list of numbers |
Math-MCP_floor | Rounds a number down to the nearest integer |
Math-MCP_ceiling | Rounds a number up to the nearest integer |
Math-MCP_round | Rounds a number to the nearest integer |
MCP Image Recognition Server_describe_image | Describe an image from base64-encoded data. Use for images directly uploaded to chat. |
MCP Image Recognition Server_describe_image_from_file | Describe an image from a local file path. Requires proper file system access. |
MCP Image Recognition Server_describe_image_from_url | Describe an image from a public URL. Most reliable method for web images. |
Twitter MCP Server_post_tweet | Post a new tweet to Twitter |
Twitter MCP Server_search_tweets | Search for tweets on Twitter |
Shannon Thinking MCP Server_shannonthinking | A problem-solving tool inspired by Claude Shannon's systematic and iterative approach to complex problems. This tool helps break down problems using Shannon's methodology of problem definition, mathematical modeling, validation, and practical implementation. When to use this tool:
Key features:
Parameters explained:
The tool supports an iterative approach:
Each thought can build on, revise, or re-examine previous steps, creating a flexible yet rigorous problem-solving framework. |
Python REPL MCP Server_execute_python | Execute Python code and return the output. Variables persist between executions. |
Python REPL MCP Server_list_variables | List all variables in the current session |
Python REPL MCP Server_install_package | Install a Python package using uv |
Smartsheet MCP Server_smartsheet_add_column | Add a new column to a Smartsheet |
Smartsheet MCP Server_smartsheet_delete_column | Delete a column from a Smartsheet |
Smartsheet MCP Server_smartsheet_rename_column | Rename a column in a Smartsheet |
Smartsheet MCP Server_get_column_map | Get column mapping and sample data from a Smartsheet |
Smartsheet MCP Server_smartsheet_write | Write data to a Smartsheet |
Smartsheet MCP Server_smartsheet_update | Update existing rows in a Smartsheet |
Smartsheet MCP Server_smartsheet_delete | Delete rows from a Smartsheet |
Smartsheet MCP Server_smartsheet_search | Search for content in a Smartsheet |
Smartsheet MCP Server_start_batch_analysis | Start a batch analysis job using Azure OpenAI |
Smartsheet MCP Server_cancel_batch_analysis | Cancel a running batch analysis job |
Smartsheet MCP Server_get_job_status | Get the status of a batch analysis job |
Smartsheet MCP Server_smartsheet_bulk_update | Perform conditional bulk updates on a Smartsheet |
Git MCP Server_init | Initialize a new Git repository |
Git MCP Server_clone | Clone a repository |
Git MCP Server_status | Get repository status |
Git MCP Server_add | Stage files |
Git MCP Server_commit | Create a commit |
Git MCP Server_push | Push commits to remote |
Git MCP Server_pull | Pull changes from remote |
Git MCP Server_branch_list | List all branches |
Git MCP Server_branch_create | Create a new branch |
Git MCP Server_branch_delete | Delete a branch |
Git MCP Server_checkout | Switch branches or restore working tree files |
Git MCP Server_tag_list | List tags |
Git MCP Server_tag_create | Create a tag |
Git MCP Server_tag_delete | Delete a tag |
Git MCP Server_remote_list | List remotes |
Git MCP Server_remote_add | Add a remote |
Git MCP Server_remote_remove | Remove a remote |
Git MCP Server_stash_list | List stashes |
Git MCP Server_stash_save | Save changes to stash |
Git MCP Server_stash_pop | Apply and remove a stash |
Git MCP Server_bulk_action | Execute multiple Git operations in sequence. This is the preferred way to execute multiple operations. |
GitHub Support Assistant_find-similar-issues | Find GitHub issues similar to a new issue description |
Supabase MCP Server_query_table | Query a specific table with schema selection and where clause support |
Supabase MCP Server_generate_types | Generate TypeScript types for your Supabase database schema |
Kagi MCP Server_search | Perform web search based on one or more queries. Results are from all queries given. They are numbered continuously, so that a user may be able to refer to a result by a specific number. |
Cargo Doc MCP Server_get_crate_doc | Get crate's main documentation page. Useful for unresolved imports (e.g. use get_crate_doc when seeing 'unresolved import tokio:') or understanding crate features. |
Cargo Doc MCP Server_list_symbols | List all symbols in a crate. Use when implementing traits or exploring available types. Shows structs, enums, traits with their paths. |
Cargo Doc MCP Server_search_doc | Search crate docs for specific features, error messages, or usage examples. Helps debug compilation issues or learn new APIs. |
DexScreener MCP Server_get_latest_token_profiles | Get the latest token profiles |
DexScreener MCP Server_get_latest_boosted_tokens | Get the latest boosted tokens |
DexScreener MCP Server_get_top_boosted_tokens | Get tokens with most active boosts |
DexScreener MCP Server_get_token_orders | Check orders paid for a specific token |
DexScreener MCP Server_get_pairs_by_chain_and_address | Get one or multiple pairs by chain and pair address |
DexScreener MCP Server_get_pairs_by_token_addresses | Get one or multiple pairs by token address (max 30) |
DexScreener MCP Server_search_pairs | Search for pairs matching query |
Git MCP_get_last_git_tag | Find the last git tag in the repository |
Git MCP_list_commits_since_last_tag | List commit messages since main HEAD and the last git tag |
Git MCP_list_repositories | List all git repositories in the configured path |
Git MCP_create_git_tag | Create a new git tag in the repository |
Git MCP_push_git_tag | Push a git tag to the default remote |
Git MCP_refresh_repository | Refresh repository by checking out main branch and pulling all remotes |
Nefino MCP Server_StartNewsRetrieval | Start an asynchronous news retrieval task for a place |
Nefino MCP Server_GetNewsResults | Get the results of a previously started news retrieval task |
Google Search Console MCP Server_list_sites | List all sites in Google Search Console |
Google Search Console MCP Server_search_analytics | Get search performance data from Google Search Console |
Google Search Console MCP Server_index_inspect | Inspect a URL to see if it is indexed or can be indexed |
Google Search Console MCP Server_list_sitemaps | List sitemaps for a site in Google Search Console |
Google Search Console MCP Server_get_sitemap | Get a sitemap for a site in Google Search Console |
Google Search Console MCP Server_submit_sitemap | Submit a sitemap for a site in Google Search Console |
Jira MCP Server_execute_jql | Execute a JQL query on Jira on the api /rest/api/3/search |
Jira MCP Server_get_only_ticket_name_and_description | Get the name and description of the requested tickets on the api /rest/api/3/search |
Jira MCP Server_create_ticket | Create a ticket on Jira on the api /rest/api/3/issue |
Jira MCP Server_list_projects | List all the projects on Jira on the api /rest/api/3/project |
Jira MCP Server_delete_ticket | Delete a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey} |
Jira MCP Server_edit_ticket | Edit a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey} |
Jira MCP Server_get_all_statuses | Get all the status on Jira on the api /rest/api/3/status |
Jira MCP Server_assign_ticket | Assign a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/assignee |
Jira MCP Server_query_assignable | Query assignables to a ticket on Jira on the api /rest/api/3/user/assignable/search?project={project-name} |
Jira MCP Server_add_attachment_from_public_url | Add an attachment from a public url to a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/attachments |
Jira MCP Server_add_attachment_from_confluence | Add an attachment to a ticket on Jira from a Confluence page by its name on the api /rest/api/3/issue/{issueIdOrKey}/attachments |
UniProt MCP Server_get_protein_info | Get protein function and sequence information from UniProt using an accession No. |
UniProt MCP Server_get_batch_protein_info | Get protein information for multiple accession No. |
MCP2Serial_set_pwm | Execute set_pwm command |
MCP2Serial_get_pico_info | Execute get_pico_info command |
MCP2Serial_led_control | Execute led_control command |
Supavec MCP Server_fetch-embeddings | Fetch embeddings for a file by ID and query |
Claude MCP Trello_trello_get_cards_by_list | Retrieves a list of cards contained in the specified list ID. |
Claude MCP Trello_trello_get_lists | Retrieves all lists in the board. |
Claude MCP Trello_trello_get_recent_activity | Retrieves the most recent board activity. The 'limit' argument can specify how many to retrieve. |
Claude MCP Trello_trello_add_card | Adds a card to the specified list. |
Claude MCP Trello_trello_update_card | Updates the content of a card. |
Claude MCP Trello_trello_archive_card | Archives (closes) the specified card. |
Claude MCP Trello_trello_add_list | Adds a new list to the board. |
Claude MCP Trello_trello_archive_list | Archives (closes) the specified list. |
Claude MCP Trello_trello_get_my_cards | Retrieves all cards related to your account. |
Claude MCP Trello_trello_search_all_boards | Performs a cross-board search across all boards in the workspace (organization) (depending on plan/permissions). |
Knowledge Base MCP Server_list_knowledge_bases | Lists the available knowledge bases. |
Knowledge Base MCP Server_retrieve_knowledge | Retrieves similar chunks from the knowledge base based on a query. Optionally, if a knowledge base is specified, only that one is searched; otherwise, all available knowledge bases are considered. By default, at most 10 documents are returned with a score below a threshold of 2. A different threshold can optionally be provided. |
Unipile MCP Server_unipile_get_accounts | Get all connected messaging accounts from supported platforms: Mobile, Mail, WhatsApp, LinkedIn, Slack, Twitter, Telegram, Instagram, Messenger. Returns account details including connection parameters, ID, name, creation date, signatures, groups, and sources. |
Unipile MCP Server_unipile_get_recent_messages | Get recent messages from all chats associated with a specific account. Supports messages from: Mobile, Mail, WhatsApp, LinkedIn, Slack, Twitter, Telegram, Instagram, Messenger. Returns message details including text content, sender info, timestamps, attachments, reactions, quoted messages, and metadata. |
Unipile MCP Server_unipile_get_emails | Get recent emails from a specific account. Returns email details including subject, body, sender, recipients, attachments, and metadata. |
Barnsworthburning MCP_search | Search barnsworthburning.net for the given query |
s3-tools_list-s3-buckets | List all S3 buckets in your AWS account |
Figma MCP Server_add_figma_file | Add a Figma file to your context |
Figma MCP Server_view_node | Get a thumbnail for a specific node in a Figma file |
Figma MCP Server_read_comments | Get all comments on a Figma file |
Figma MCP Server_post_comment | Post a comment on a node in a Figma file |
Figma MCP Server_reply_to_comment | Reply to an existing comment in a Figma file |
Face Generator MCP Server_generate_face | Generate and save a human face image |
Strava MCP Server_get_activities | |
Strava MCP Server_get_activities_by_date_range | |
Strava MCP Server_get_activity_by_id | |
Strava MCP Server_get_recent_activities | |
MCP Terminal Server_run_command | Run a terminal command with security controls. |
MCP Server Memos_list_memo_tags | List all existing memo tags |
MCP Server Memos_search_memo | Search for memos |
MCP Server Memos_create_memo | Create a new memo |
MCP Server Memos_get_memo | Get a memo |
Shopify Python MCP Server_create_product | - |
Shopify Python MCP Server_update_product | - |
Shopify Python MCP Server_delete_product | - |
Shopify Python MCP Server_list_products | - |
Shopify Python MCP Server_get_product | - |
Instagram MCP Server_get_instagram_posts | Get recent posts from an Instagram profile using existing Chrome login |
Framer Plugin MCP Server_create_plugin | Create a new Framer plugin project with web3 capabilities |
Framer Plugin MCP Server_build_plugin | Build a Framer plugin project |
MCP Human Loop Server_evaluate_need_for_human | Evaluate if a task requires human intervention |
Together AI Image Server_generate_image | Generate image from text prompt using Together AI API |
Linear MCP Server_linear_search_issues | Search issues with flexible filtering. |
Linear MCP Server_linear_get_user_issues | Get issues assigned to a user. |
Linear MCP Server_linear_add_comment | Add a comment to an issue. |
Linear MCP Server_linear_create_issue | Create a new Linear issue. |
Linear MCP Server_linear_update_issue | Update an existing Linear issue. |
ClaudeKeep_store_message | Store a chat message |
ClaudeKeep_save_chat | Save the current chat |
Chrome Debug MCP Server_hover | Hover over an element |
Chrome Debug MCP Server_click | Click an element on the page |
Chrome Debug MCP Server_type | Type text into an input field |
Chrome Debug MCP Server_select | Select an option in a dropdown |
Chrome Debug MCP Server_launch_chrome | Launch Chrome in debug mode |
Chrome Debug MCP Server_get_console_logs | Get console logs from Chrome |
Chrome Debug MCP Server_evaluate | Evaluate JavaScript in Chrome |
Chrome Debug MCP Server_wait_for_selector | Wait for an element to appear on the page |
Chrome Debug MCP Server_screenshot | Take a screenshot of the page or element |
Chrome Debug MCP Server_navigate | Navigate to a URL |
Chrome Debug MCP Server_get_text | Get text content of an element |
Chrome Debug MCP Server_get_attribute | Get attribute value of an element |
Chrome Debug MCP Server_set_viewport | Set the viewport size and properties |
MCP-DBLP_get_author_publications | Retrieve publication details for a specific author with fuzzy matching. Arguments:
|
MCP-DBLP_get_venue_info | Retrieve detailed information about a publication venue. Arguments:
|
MCP-DBLP_search | Search DBLP for publications using a boolean query string. Arguments:
|
MCP-DBLP_calculate_statistics | Calculate statistics from a list of publication results. Arguments:
|
MCP-DBLP_export_bibtex | Export BibTeX entries from a collection of HTML hyperlinks. Arguments:
|
MCP-DBLP_fuzzy_title_search | Search DBLP for publications with fuzzy title matching. Arguments:
|
mcp-cli-exec MCP Server_cli-exec-raw | Execute a raw CLI command and return structured output |
mcp-cli-exec MCP Server_cli-exec | Execute one or more CLI commands in a specific working directory |
Valyu MCP Server_knowledge | Search proprietary and/or web sources for information based on the supplied query. |
Valyu MCP Server_feedback | Submit user feedback and sentiment for a transaction. |
JSON Resume MCP Server_github_analyze_codebase | This is a tool from the github MCP server. Analyzes the current codebase and returns information about technologies, languages, and recent commits |
JSON Resume MCP Server_github_check_resume | This is a tool from the github MCP server. Checks if a GitHub user has a JSON Resume and returns its information |
JSON Resume MCP Server_github_enhance_resume_with_project | This is a tool from the github MCP server. Enhances a GitHub user's JSON Resume with information about their current project |
Image Generation MCP Server_generate_image | Generate an image using Together AI API |
MCP Documentation Service_generate_documentation_navigation | Generate a navigation structure from the markdown documents in the docs directory. Returns a JSON structure that can be used for navigation menus. |
MCP Documentation Service_check_documentation_health | Check the health of the documentation by analyzing frontmatter, links, and navigation. Returns a report with issues and a health score. |
MCP Documentation Service_search_documents | Search for markdown documents containing specific text in their content or frontmatter. Returns the relative paths to matching documents. |
MCP Documentation Service_read_document | Read a markdown document from the docs directory. Returns the document content including frontmatter. Use this tool when you need to examine the contents of a single document. |
MCP Documentation Service_write_document | Create a new markdown document or completely overwrite an existing document with new content. Use with caution as it will overwrite existing documents without warning. Can create parent directories if they don't exist. |
MCP Documentation Service_edit_document | Make line-based edits to a markdown document. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made. |
MCP Documentation Service_list_documents | List all markdown documents in the docs directory or a subdirectory. Returns the relative paths to all documents. |
MCP Documentation Service_create_folder | Create a new folder in the docs directory. Optionally creates a README.md file in the new folder with basic frontmatter. |
MCP Documentation Service_move_document | Move a document from one location to another. Optionally updates references to the document in other files. |
MCP Documentation Service_rename_document | Rename a document while preserving its location and content. Optionally updates references to the document in other files. |
MCP Documentation Service_update_navigation_order | Update the navigation order of a document by modifying its frontmatter. |
MCP Documentation Service_create_documentation_section | Create a new navigation section with an index.md file. |
MCP Documentation Service_validate_documentation_links | Check for broken internal links in documentation files. |
MCP Documentation Service_validate_documentation_metadata | Ensure all documents have required metadata fields. |
Anki MCP Server_create_note | Create a new note (Basic or Cloze) |
Anki MCP Server_list_decks | List all available Anki decks |
Anki MCP Server_create_deck | Create a new Anki deck |
Anki MCP Server_batch_create_notes | Create multiple notes at once |
Anki MCP Server_search_notes | Search for notes using Anki query syntax |
Anki MCP Server_get_note_info | Get detailed information about a note |
Anki MCP Server_update_note | Update an existing note |
Anki MCP Server_delete_note | Delete a note |
Anki MCP Server_list_note_types | List all available note types |
Anki MCP Server_create_note_type | Create a new note type |
MongoDB MCP Server_list_databases | List all databases in the MongoDB server. |
MongoDB MCP Server_list_collections | List all collections in a database. Start here to understand what collections are available before querying. |
MongoDB MCP Server_get_schema | Infer schema from a collection by analyzing sample documents. Best Practice: Use this before querying to understand collection structure. Example: use_mcp_tool with server_name: "mongodb", tool_name: "get_schema", arguments: { "collection": "users", "sampleSize": 100 } |
MongoDB MCP Server_query | Execute a read-only query on a collection using MongoDB query syntax. Supports both JSON and CSV output formats:
Best Practices:
Example - Standard Query: use_mcp_tool with server_name: "mongodb", tool_name: "query", arguments: { "collection": "users", "filter": { "age": { "$gte": 21 } }, "projection": { "name": 1, "email": 1 }, "sort": { "name": 1 }, "limit": 100 } Example - CSV Export: use_mcp_tool with server_name: "mongodb", tool_name: "query", arguments: { "collection": "users", "filter": { "active": true }, "outputFormat": "csv", "formatOptions": { "includeHeaders": true, "delimiter": "," } } |
MongoDB MCP Server_aggregate | Execute a read-only aggregation pipeline on a collection. Supported Stages:
Unsafe/Blocked Stages:
Example - User Statistics by Role: use_mcp_tool with server_name: "mongodb", tool_name: "aggregate", arguments: { "collection": "users", "pipeline": [ { "$match": { "active": true } }, { "$group": { "_id": "$role", "count": { "$sum": 1 }, "avgAge": { "$avg": "$age" } }}, { "$sort": { "count": -1 } } ], "limit": 100 } Example - Posts with Author Details: use_mcp_tool with server_name: "mongodb", tool_name: "aggregate", arguments: { "collection": "posts", "pipeline": [ { "$match": { "published": true } }, { "$lookup": { "from": "users", "localField": "authorId", "foreignField": "_id", "as": "author" }}, { "$unwind": "$author" }, { "$project": { "title": 1, "authorName": "$author.name", "publishDate": 1 }} ] } |
MongoDB MCP Server_get_collection_stats | Get detailed statistics about a collection. Returns information about:
|
MongoDB MCP Server_get_indexes | Get information about indexes on a collection. Returns details about:
|
MongoDB MCP Server_explain_query | Get the execution plan for a query. Helps understand:
Use this to optimize slow queries. |
MongoDB MCP Server_get_distinct_values | Get distinct values for a field in a collection. Useful for:
Example: use_mcp_tool with server_name: "mongodb", tool_name: "get_distinct_values", arguments: { "collection": "users", "field": "role", "filter": { "active": true } } |
MongoDB MCP Server_sample_data | Get a random sample of documents from a collection. Supports both JSON and CSV output formats:
Useful for:
Example - JSON Sample: use_mcp_tool with server_name: "mongodb", tool_name: "sample_data", arguments: { "collection": "users", "size": 50 } Example - CSV Export: use_mcp_tool with server_name: "mongodb", tool_name: "sample_data", arguments: { "collection": "users", "size": 100, "outputFormat": "csv", "formatOptions": { "includeHeaders": true, "delimiter": "," } } |
MongoDB MCP Server_count_documents | Count documents in a collection that match a filter. Benefits:
Example: use_mcp_tool with server_name: "mongodb", tool_name: "count_documents", arguments: { "collection": "users", "filter": { "active": true, "age": { "$gte": 21 } } } |
MongoDB MCP Server_find_by_ids | Find multiple documents by their IDs in a single request. Advantages:
Example: use_mcp_tool with server_name: "mongodb", tool_name: "find_by_ids", arguments: { "collection": "products", "ids": ["5f8d0f3c", "5f8d0f3d", "5f8d0f3e"], "idField": "_id", "projection": { "name": 1, "price": 1 } } |
MongoDB MCP Server_geo_query | Execute geospatial queries on a MongoDB collection. Supports:
Requirements:
Examples:
|
MongoDB MCP Server_text_search | Perform a full-text search on a collection. Requirements:
Features:
Example: use_mcp_tool with server_name: "mongodb", tool_name: "text_search", arguments: { "collection": "articles", "searchText": "mongodb database", "filter": { "published": true }, "limit": 10, "includeScore": true } |
Everything Search MCP Server_search | Search for files using Everything Search |
Azure DevOps MCP Server_list_organizations | List all Azure DevOps organizations accessible to the current authentication |
Azure DevOps MCP Server_list_projects | List all projects in an organization |
Azure DevOps MCP Server_get_project | Get details of a specific project |
Azure DevOps MCP Server_get_project_details | Get comprehensive details of a project including process, work item types, and teams |
Azure DevOps MCP Server_get_work_item | Get details of a specific work item |
Azure DevOps MCP Server_list_work_items | List work items in a project |
Azure DevOps MCP Server_create_work_item | Create a new work item |
Azure DevOps MCP Server_update_work_item | Update an existing work item |
Azure DevOps MCP Server_manage_work_item_link | Add or remove a link between work items |
Azure DevOps MCP Server_get_repository | Get details of a specific repository |
Azure DevOps MCP Server_get_repository_details | Get detailed information about a repository including statistics and refs |
Azure DevOps MCP Server_list_repositories | List repositories in a project |
Azure DevOps MCP Server_search_code | Search for code across repositories in a project |
Azure DevOps MCP Server_search_wiki | Search for content across wiki pages in a project |
Azure DevOps MCP Server_search_work_items | Search for work items across projects in Azure DevOps |
HH JIRA MCP Server_search_team_active_portfolios | - |
HH JIRA MCP Server_create_task | - |
HH JIRA MCP Server_set_defence_checked | - |
Macrostrat MCP Server_find-columns | Query Macrostrat stratigraphic columns |
Macrostrat MCP Server_find-units | Query Macrostrat geologic units |
Macrostrat MCP Server_defs | Routes giving access to standard fields and dictionaries used in Macrostrat |
Macrostrat MCP Server_defs-autocomplete | Quickly retrieve all definitions matching a query. Limited to 100 results |
Macrostrat MCP Server_mineral-info | Get information about a mineral, use one property |
Macrostrat MCP Server_timescale | Get information about a time period |
Spotify MCP Server_SpotifyPlayback | Manages the current playback with the following actions: - get: Get information about user's current track. - start: Starts playing new item or resumes current playback if called with no uri. - pause: Pauses current playback. - skip: Skips current track. |
Spotify MCP Server_SpotifySearch | Search for tracks, albums, artists, or playlists on Spotify. |
Spotify MCP Server_SpotifyQueue | Manage the playback queue - get the queue or add tracks. |
Spotify MCP Server_SpotifyGetInfo | Get detailed information about a Spotify item (track, album, artist, or playlist). |
TaskWarrior MCP Server_get_next_tasks | Get a list of all pending tasks |
TaskWarrior MCP Server_mark_task_done | Mark a task as done (completed) |
TaskWarrior MCP Server_add_task | Add a new task |
SourceSync.ai MCP Server_validateApiKey | Validates the API key by attempting to list namespaces. Returns the list of namespaces if successful. |
SourceSync.ai MCP Server_createNamespace | Creates a new namespace with the provided configuration. Requires a name, file storage configuration, vector storage configuration, and embedding model configuration. |
SourceSync.ai MCP Server_listNamespaces | Lists all namespaces available for the current API key and optional tenant ID. |
SourceSync.ai MCP Server_getNamespace | Retrieves a specific namespace by its ID. |
SourceSync.ai MCP Server_updateNamespace | Updates an existing namespace with the provided configuration parameters. |
SourceSync.ai MCP Server_deleteNamespace | Permanently deletes a namespace by its ID. |
SourceSync.ai MCP Server_ingestText | Ingests raw text content into the namespace. Supports optional metadata and chunk configuration. |
SourceSync.ai MCP Server_ingestFile | Ingests a file into the namespace. Supports various file formats with automatic parsing. |
SourceSync.ai MCP Server_ingestUrls | Ingests content from a list of URLs. Supports scraping options and metadata. |
SourceSync.ai MCP Server_ingestSitemap | Ingests content from a website using its sitemap.xml. Supports path filtering and link limits. |
SourceSync.ai MCP Server_ingestWebsite | Crawls and ingests content from a website recursively. Supports depth control and path filtering. |
SourceSync.ai MCP Server_ingestConnector | Ingests all documents in the connector that are in backlog or failed status. No need to provide the document ids or file ids for the ingestion. Ids are already in the backlog when picked thorough the picker. If not, the user has to go through the authorization flow again, where they will be asked to pick the documents again. |
SourceSync.ai MCP Server_getIngestJobRunStatus | Checks the status of a previously submitted ingestion job. |
SourceSync.ai MCP Server_fetchDocuments | Fetches documents from the namespace based on filter criteria. Supports pagination and including specific document properties. |
SourceSync.ai MCP Server_updateDocuments | Updates metadata for documents that match the specified filter criteria. |
SourceSync.ai MCP Server_deleteDocuments | Permanently deletes documents that match the specified filter criteria. |
SourceSync.ai MCP Server_resyncDocuments | Reprocesses documents that match the specified filter criteria. Useful for updating after schema changes. |
SourceSync.ai MCP Server_semanticSearch | Performs semantic search across the namespace to find relevant content based on meaning rather than exact keyword matches. |
SourceSync.ai MCP Server_hybridSearch | Performs a combined keyword and semantic search, balancing between exact matches and semantic similarity. Requires hybridConfig with weights for both search types. |
SourceSync.ai MCP Server_createConnection | Creates a new connection to a specific source. The connector parameter should be a valid SourceSync connector enum value. The clientRedirectUrl parameter is optional and can be used to specify a custom redirect URL for the connection. This will give you a authorization url which you can redirect the user to. The user will then be asked to pick the documents they want to ingest. |
SourceSync.ai MCP Server_listConnections | Lists all connections for the current namespace, optionally filtered by connector type. |
SourceSync.ai MCP Server_getConnection | Retrieves details for a specific connection by its ID. |
SourceSync.ai MCP Server_updateConnection | Updates a connection to a specific source. The connector parameter should be a valid SourceSync connector enum value. The clientRedirectUrl parameter is optional and can be used to specify a custom redirect URL for the connection. This will give you a authorization url which you can redirect the user to. The user will then be asked to pick the documents they want to ingest. This is useful if you want to update the connection to a different source or if you want to update the clientRedirectUrl or if you want to pick a different or new set of documents. |
SourceSync.ai MCP Server_revokeConnection | Revokes access for a specific connection, removing the integration with the external service. |
SourceSync.ai MCP Server_fetchUrlContent | Fetches the content of a URL. Particularly useful for fetching parsed text file URLs. |
MCP Ethers Wallet_getSupportedNetworks | Get a list of all supported networks and their configurations. Shows which network is the default (used when no provider is specified). Call this first to discover available networks before using other network-related functions. |
MCP Ethers Wallet_checkWalletExists | Check if there is a wallet configured on the server. Returns basic wallet info like address but never exposes private keys. |
MCP Ethers Wallet_getWalletBalance | Get the ETH balance of a wallet |
MCP Ethers Wallet_getERC20Balance | Get the ERC20 token balance of a wallet |
MCP Ethers Wallet_getWalletTransactionCount | Get the number of transactions ever sent by an address |
MCP Ethers Wallet_getBlockNumber | Get the current block number |
MCP Ethers Wallet_getBlockDetails | Get details about a block |
MCP Ethers Wallet_getTransactionDetails | Get details about a transaction |
MCP Ethers Wallet_getGasPrice | Get the current gas price |
MCP Ethers Wallet_getFeeData | Get the current network fee data |
MCP Ethers Wallet_getContractCode | Get a contract's bytecode |
MCP Ethers Wallet_lookupAddress | Get the ENS name for an address |
MCP Ethers Wallet_resolveName | Get the address for an ENS name |
MCP Ethers Wallet_formatEther | Convert a wei value to a decimal string in ether |
MCP Ethers Wallet_parseEther | Convert an ether value to wei |
MCP Ethers Wallet_formatUnits | Convert a value to a decimal string with specified units |
MCP Ethers Wallet_parseUnits | Convert a decimal string to its smallest unit representation |
MCP Ethers Wallet_sendTransaction | Send ETH from the server's wallet to a recipient |
MCP Ethers Wallet_signMessage | Sign a message using the server's wallet |
MCP Ethers Wallet_contractCall | Call a view/pure method on a smart contract (read-only operations) |
MCP Ethers Wallet_contractCallView | Call a view/pure method on a smart contract (read-only operations) |
MCP Ethers Wallet_contractCallWithEstimate | Call a method on a smart contract with automatic gas estimation |
MCP Ethers Wallet_contractSendTransaction | Call a method on a smart contract and send a transaction with custom parameters |
MCP Ethers Wallet_contractSendTransactionWithEstimate | Call a method on a smart contract and send a transaction with automatic gas estimation |
MCP Ethers Wallet_contractCallWithOverrides | Call a method on a smart contract with advanced options |
MCP Ethers Wallet_contractSendTransactionWithOverrides | Call a method on a smart contract and send a transaction with custom parameters |
MCP Ethers Wallet_sendRawTransaction | Send a raw transaction |
MCP Ethers Wallet_queryLogs | Query historical logs |
MCP Ethers Wallet_contractEvents | Query historical events from a contract |
MCP Ethers Wallet_sendTransactionWithOptions | Send a transaction with advanced options including gas limit, gas price, and nonce |
MCP Ethers Wallet_getTransactionsByBlock | Get details about transactions in a specific block. |
ABAP-ADT-API MCP-Server_hasTransportConfig | Check if transport configuration exists |
ABAP-ADT-API MCP-Server_transportConfigurations | Retrieves transport configurations. |
ABAP-ADT-API MCP-Server_getTransportConfiguration | Retrieves a specific transport configuration. |
ABAP-ADT-API MCP-Server_fixProposals | Retrieves fix proposals. |
ABAP-ADT-API MCP-Server_login | Authenticate with ABAP system |
ABAP-ADT-API MCP-Server_logout | Terminate ABAP session |
ABAP-ADT-API MCP-Server_dropSession | Clear local session cache |
ABAP-ADT-API MCP-Server_transportInfo | Get transport information for an object source |
ABAP-ADT-API MCP-Server_createTransport | Create a new transport request |
ABAP-ADT-API MCP-Server_setTransportsConfig | Sets transport configurations. |
ABAP-ADT-API MCP-Server_createTransportsConfig | Creates transport configurations. |
ABAP-ADT-API MCP-Server_userTransports | Retrieves transports for a user. |
ABAP-ADT-API MCP-Server_transportsByConfig | Retrieves transports by configuration. |
ABAP-ADT-API MCP-Server_transportDelete | Deletes a transport. |
ABAP-ADT-API MCP-Server_transportRelease | Releases a transport. |
ABAP-ADT-API MCP-Server_transportSetOwner | Sets the owner of a transport. |
ABAP-ADT-API MCP-Server_transportAddUser | Adds a user to a transport. |
ABAP-ADT-API MCP-Server_systemUsers | Retrieves a list of system users. |
ABAP-ADT-API MCP-Server_transportReference | Retrieves a transport reference. |
ABAP-ADT-API MCP-Server_objectStructure | Get object structure details |
ABAP-ADT-API MCP-Server_searchObject | Search for objects |
ABAP-ADT-API MCP-Server_findObjectPath | Find path for an object |
ABAP-ADT-API MCP-Server_fixEdits | Applies fix edits. |
ABAP-ADT-API MCP-Server_unLock | Unlock an object |
ABAP-ADT-API MCP-Server_getObjectSource | Retrieves source code for ABAP objects |
ABAP-ADT-API MCP-Server_objectTypes | Retrieves object types. |
ABAP-ADT-API MCP-Server_reentranceTicket | Retrieves a reentrance ticket. |
ABAP-ADT-API MCP-Server_classIncludes | Get class includes structure |
ABAP-ADT-API MCP-Server_classComponents | List class components |
ABAP-ADT-API MCP-Server_createTestInclude | Create test include for class |
ABAP-ADT-API MCP-Server_syntaxCheckCode | Perform ABAP syntax check with source code |
ABAP-ADT-API MCP-Server_syntaxCheckCdsUrl | Perform ABAP syntax check with CDS URL |
ABAP-ADT-API MCP-Server_codeCompletion | Get code completion suggestions |
ABAP-ADT-API MCP-Server_findDefinition | Find symbol definition |
ABAP-ADT-API MCP-Server_usageReferences | Find symbol references |
ABAP-ADT-API MCP-Server_syntaxCheckTypes | Retrieves syntax check types. |
ABAP-ADT-API MCP-Server_codeCompletionFull | Performs full code completion. |
ABAP-ADT-API MCP-Server_runClass | Runs a class. |
ABAP-ADT-API MCP-Server_codeCompletionElement | Retrieves code completion element information. |
ABAP-ADT-API MCP-Server_usageReferenceSnippets | Retrieves usage reference snippets. |
ABAP-ADT-API MCP-Server_fragmentMappings | Retrieves fragment mappings. |
ABAP-ADT-API MCP-Server_abapDocumentation | Retrieves ABAP documentation. |
ABAP-ADT-API MCP-Server_lock | Lock an object |
ABAP-ADT-API MCP-Server_setObjectSource | Sets source code for ABAP objects |
ABAP-ADT-API MCP-Server_deleteObject | Deletes an ABAP object from the system |
ABAP-ADT-API MCP-Server_activateObjects | Activate ABAP objects using object references |
ABAP-ADT-API MCP-Server_activateByName | Activate an ABAP object using name and URL |
ABAP-ADT-API MCP-Server_inactiveObjects | Get list of inactive objects |
ABAP-ADT-API MCP-Server_objectRegistrationInfo | Get registration information for an ABAP object |
ABAP-ADT-API MCP-Server_validateNewObject | Validate parameters for a new ABAP object |
ABAP-ADT-API MCP-Server_createObject | Create a new ABAP object |
ABAP-ADT-API MCP-Server_nodeContents | Retrieves the contents of a node in the ABAP repository tree. |
ABAP-ADT-API MCP-Server_mainPrograms | Retrieves the main programs for a given include. |
ABAP-ADT-API MCP-Server_featureDetails | Retrieves details for a given feature. |
ABAP-ADT-API MCP-Server_collectionFeatureDetails | Retrieves details for a given collection feature. |
ABAP-ADT-API MCP-Server_findCollectionByUrl | Finds a collection by its URL. |
ABAP-ADT-API MCP-Server_loadTypes | Loads object types. |
ABAP-ADT-API MCP-Server_adtDiscovery | Performs ADT discovery. |
ABAP-ADT-API MCP-Server_adtCoreDiscovery | Performs ADT core discovery. |
ABAP-ADT-API MCP-Server_adtCompatibiliyGraph | Retrieves the ADT compatibility graph. |
ABAP-ADT-API MCP-Server_unitTestRun | Runs unit tests. |
ABAP-ADT-API MCP-Server_unitTestEvaluation | Evaluates unit test results. |
ABAP-ADT-API MCP-Server_unitTestOccurrenceMarkers | Retrieves unit test occurrence markers. |
MCP LLMS.txt Explorer_check_website | Check if a website has llms.txt files |
MCP LLMS.txt Explorer_list_websites | List known websites with llms.txt files |
MCP DuckDB Knowledge Graph Memory Server_open_nodes | Open specific nodes in the knowledge graph by their names |
MCP DuckDB Knowledge Graph Memory Server_delete_relations | Delete multiple relations from the knowledge graph |
MCP DuckDB Knowledge Graph Memory Server_create_entities | Create multiple new entities in the knowledge graph |
MCP DuckDB Knowledge Graph Memory Server_create_relations | Create multiple new relations between entities in the knowledge graph. Relations should be in active voice |
MCP DuckDB Knowledge Graph Memory Server_add_observations | Add new observations to existing entities in the knowledge graph |
MCP DuckDB Knowledge Graph Memory Server_delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
MCP DuckDB Knowledge Graph Memory Server_delete_observations | Delete specific observations from entities in the knowledge graph |
MCP DuckDB Knowledge Graph Memory Server_search_nodes | Search for nodes in the knowledge graph based on a query |
Powerpoint MCP Server_create-presentation | This tool starts the process of generating a new powerpoint presentation with the name given by the user. Use this tool when the user requests to create or generate a new presentation. |
Powerpoint MCP Server_generate-and-save-image | Generates an image using a FLUX model and save the image to the specified path. The tool will return a PNG file path. It should be used when the user asks to generate or create an image or a picture. |
Powerpoint MCP Server_add-slide-title-only | This tool adds a new title slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on. |
Powerpoint MCP Server_add-slide-section-header | This tool adds a section header (a.k.a segue) slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on. |
Powerpoint MCP Server_add-slide-title-content | Add a new slide with a title and content to an existing presentation |
Powerpoint MCP Server_add-slide-comparison | Add a new a comparison slide with title and comparison content. Use when you wish to compare two concepts |
Powerpoint MCP Server_add-slide-title-with-table | Add a new slide with a title and table containing the provided data |
Powerpoint MCP Server_add-slide-title-with-chart | Add a new slide with a title and chart. The chart type will be automatically selected based on the data structure. |
Powerpoint MCP Server_add-slide-picture-with-caption | Add a new slide with a picture and caption to an existing presentation |
Powerpoint MCP Server_open-presentation | Opens an existing presentation and saves a copy to a new file for backup. Use this tool when the user requests to open a presentation that has already been created. |
Powerpoint MCP Server_save-presentation | Save the presentation to a file. Always use this tool at the end of any process that has added slides to a presentation. |
MCP2Tavily_search_web | Search the web for information using Tavily API |
MCP2Tavily_search_web_info | - |
MCP2Tavily_get_url_content | Get the content from a specific URL using Tavily API |
MCP2Tavily_get_url_content_info | URL |
MCP Server Template for Cursor IDE_mcp_fetch | Fetches a website and returns its content |
MCP Server Template for Cursor IDE_mood | Ask the server about its mood - it's always happy! |
MCP Server Template for Cursor IDE_fetch_railway_docs | Fetches the most recent Railway CLI documentation. Optionally, provide a custom URL. |
MCP Server Template for Cursor IDE_fetch_railway_docs_optimized | Fetches the most recent Railway CLI documentation. Optionally, provide a custom URL. |
MCP Server Template for Cursor IDE_apply_prompt_fix | Provides a prompt for performing root cause analysis and fixing issues |
MCP Server Template for Cursor IDE_apply_prompt_initial | Provides an initial prompt template for starting a new project |
MCP Server Template for Cursor IDE_apply_prompt_proceed | Provides a prompt template for proceeding with a task or project |
MCP Server Template for Cursor IDE_apply_prompt_change | Provides a prompt for systematically handling change requests |
MCP Server Template for Cursor IDE_apply_prompt_fix_linter | Provides a prompt for analyzing and fixing linter errors |
MCP Server Template for Cursor IDE_apply_prompt_unit_tests | Provides a prompt for generating unit tests for code |
MCP Server Template for Cursor IDE_apply_prompt_infra | Provides a prompt template for laying out system infrastructure and tool stack information |
Fetch Browser_fetch_url | Fetch content from a URL with proper error handling and response processing |
Fetch Browser_google_search | Execute a Google search and return results in various formats |
Travel Planner MCP Server_create_itinerary | Creates a personalized travel itinerary based on user preferences |
Travel Planner MCP Server_optimize_itinerary | Optimizes an existing itinerary based on specified criteria |
Travel Planner MCP Server_search_attractions | Searches for attractions and points of interest in a specified location |
Travel Planner MCP Server_get_transport_options | Retrieves available transportation options between two points |
Travel Planner MCP Server_get_accommodations | Searches for accommodation options in a specified location |
Farcaster MCP Server_get-user-casts | Get casts from a specific Farcaster user by FID |
Farcaster MCP Server_get-channel-casts | Get casts from a specific Farcaster channel |
Farcaster MCP Server_get-username-casts | Get casts from a specific Farcaster username |
Bybit MCP Server_get_instrument_info | Get detailed instrument information for a specific trading pair |
Bybit MCP Server_get_kline | Get kline/candlestick data for a trading pair |
Bybit MCP Server_get_market_info | Get detailed market information for trading pairs |
Bybit MCP Server_get_order_history | Get order history for the authenticated user |
Bybit MCP Server_get_orderbook | Get orderbook (market depth) data for a trading pair |
Bybit MCP Server_get_positions | Get positions information for the authenticated user |
Bybit MCP Server_get_ticker | Get real-time ticker information for a trading pair |
Bybit MCP Server_get_trades | Get recent trades for a trading pair |
Bybit MCP Server_get_wallet_balance | Get wallet balance information for the authenticated user |
Windows CLI MCP Server_delete_ssh_connection | Delete an existing SSH connection |
Windows CLI MCP Server_get_current_directory | Get the current working directory |
Windows CLI MCP Server_execute_command | Execute a command in the specified shell (powershell, cmd, or gitbash) Example usage (PowerShell): Example usage (CMD): Example usage (Git Bash): |
Windows CLI MCP Server_get_command_history | Get the history of executed commands Example usage: Example response: |
Windows CLI MCP Server_ssh_execute | Execute a command on a remote host via SSH Example usage: Configuration required in config.json: |
Windows CLI MCP Server_ssh_disconnect | Disconnect from an SSH server Example usage: Use this to cleanly close SSH connections when they're no longer needed. |
Windows CLI MCP Server_create_ssh_connection | Create a new SSH connection |
Windows CLI MCP Server_read_ssh_connections | Read all SSH connections |
Windows CLI MCP Server_update_ssh_connection | Update an existing SSH connection |
Google Tasks MCP Server_create_task | Create a new task in Google Tasks |
Google Tasks MCP Server_list_tasks | List all tasks in the default task list |
Google Tasks MCP Server_delete_task | Delete a task from the default task list |
Google Tasks MCP Server_complete_task | Toggle the completion status of a task |
Markdownify MCP Server - UTF-8 Enhanced_youtube-to-markdown | Convert a YouTube video to markdown, including transcript if available |
Markdownify MCP Server - UTF-8 Enhanced_audio-to-markdown | Convert an audio file to markdown, including transcription if possible |
Markdownify MCP Server - UTF-8 Enhanced_xlsx-to-markdown | Convert an XLSX file to markdown |
Markdownify MCP Server - UTF-8 Enhanced_bing-search-to-markdown | Convert a Bing search results page to markdown |
Markdownify MCP Server - UTF-8 Enhanced_docx-to-markdown | Convert a DOCX file to markdown |
Markdownify MCP Server - UTF-8 Enhanced_get-markdown-file | Get a markdown file by absolute file path |
Markdownify MCP Server - UTF-8 Enhanced_image-to-markdown | Convert an image to markdown, including metadata and description |
Markdownify MCP Server - UTF-8 Enhanced_pdf-to-markdown | Convert a PDF file to markdown |
Markdownify MCP Server - UTF-8 Enhanced_pptx-to-markdown | Convert a PPTX file to markdown |
Markdownify MCP Server - UTF-8 Enhanced_webpage-to-markdown | Convert a webpage to markdown |
GitHub Kanban MCP Server_list_issues | issue |
GitHub Kanban MCP Server_create_issue | issue |
GitHub Kanban MCP Server_update_issue | issue |
GitHub Kanban MCP Server_add_comment | - |
Biomart MCP_list_marts | |
Biomart MCP_list_datasets | |
Biomart MCP_list_common_attributes | |
Biomart MCP_list_all_attributes | |
Biomart MCP_list_filters | |
Biomart MCP_get_data | |
Biomart MCP_get_translation | |
Biomart MCP_batch_translate | |
Cursor A11y MCP_a11y | Run accessibility tests on a URL or a local path (relative URL appended to http://localhost:5000). |
Terminal Controller for MCP_execute_command | |
Terminal Controller for MCP_get_command_history | |
Terminal Controller for MCP_get_current_directory | |
Terminal Controller for MCP_change_directory | |
Terminal Controller for MCP_list_directory | |
Terminal Controller for MCP_write_file | |
Terminal Controller for MCP_read_file | |
Terminal Controller for MCP_insert_file_content | |
Terminal Controller for MCP_delete_file_content | |
Terminal Controller for MCP_update_file_content | |
Gemini Thinking Server_geminithinking | A detailed tool for dynamic and reflective problem-solving through Gemini AI. This tool helps analyze problems through a flexible thinking process powered by Google's Gemini model. Each thought can build on, question, or revise previous insights as understanding deepens. When to use this tool:
Key features:
Parameters explained:
Session commands:
You should:
|
Safe MCP Server_getSafeTransactions | Get all transactions for a Safe address |
Safe MCP Server_getMultisigTransaction | Get details of a specific multisig transaction |
Safe MCP Server_decodeTransactionData | Decode transaction data using Safe API |
Overseerr MCP Server_example_tool | An example tool that processes messages |
Overseerr MCP Server_get_daily_treasury_statement | Get the daily treasury statement for a specific day |
Overseerr MCP Server_get_media_details | Get detailed information about a specific movie or TV show |
Overseerr MCP Server_get_requests | Get a list of media requests from Overseerr |
Overseerr MCP Server_request_media | Request a movie or TV show to be added to the media server |
Overseerr MCP Server_search_media | Search for movies and TV shows in Overseerr |
Zoom Transcript MCP Server_get_recent_transcripts | Get and download transcripts from recent Zoom meetings. This tool will access the Zoom cloud API to fetch and download recent meeting transcripts. |
Zoom Transcript MCP Server_search_transcripts | Search across Zoom meeting transcripts for specific content. This tool will search through locally stored transcripts first. |
Zoom Transcript MCP Server_extract_action_items | Identify and extract action items, tasks and commitments from meeting transcripts |
Zoom Transcript MCP Server_check_local_transcripts | Check what transcripts are already downloaded and available locally |
Zoom Transcript MCP Server_download_transcript | Download a specific Zoom meeting transcript from the cloud to local storage |
Zoom Transcript MCP Server_list_meetings | List available Zoom meetings with recordings that exist in the cloud |
SQLite MCP Server_read-query | Execute a read-only SQL query |
SQLite MCP Server_write-query | Execute a write SQL query |
SQLite MCP Server_create-table | Create a new table in the database |
SQLite MCP Server_list-tables | List all tables in the database |
SQLite MCP Server_describe-table | Get schema information for a table |
SQLite MCP Server_append-insight | Add a business insight to the memo |
Ragie Model Context Protocol Server_retrieve | Look up information in the Knowledge Base. Use this tool when you need to:
|
Markdown Downloader_download_markdown | Download a webpage as markdown using r.jina.ai |
Markdown Downloader_list_downloaded_files | List all downloaded markdown files |
Markdown Downloader_set_download_directory | Set the main local download folder for markdown files |
Markdown Downloader_get_download_directory | Get the current download directory |
Markdown Downloader_create_subdirectory | Create a new subdirectory in the root download folder |
Telegram MCP Server_ListDialogs | List available dialogs, chats and channels. |
Telegram MCP Server_ListMessages | |
Chain of Draft (CoD) MCP Server_chain_of_draft_solve | Solve a reasoning problem using Chain of Draft approach |
Chain of Draft (CoD) MCP Server_math_solve | Solve a math problem using Chain of Draft reasoning |
Chain of Draft (CoD) MCP Server_code_solve | Solve a coding problem using Chain of Draft reasoning |
Chain of Draft (CoD) MCP Server_logic_solve | Solve a logic problem using Chain of Draft reasoning |
Chain of Draft (CoD) MCP Server_get_performance_stats | Get performance statistics for CoD vs CoT approaches |
Chain of Draft (CoD) MCP Server_get_token_reduction | Get token reduction statistics for CoD vs CoT |
Chain of Draft (CoD) MCP Server_analyze_problem_complexity | Analyze the complexity of a problem |
Claude Outlook MCP Tool_outlook_mail | Interact with Microsoft Outlook for macOS - read, search, send, and manage emails |
Claude Outlook MCP Tool_outlook_calendar | Interact with Microsoft Outlook for macOS calendar - view, create, and manage events |
Claude Outlook MCP Tool_outlook_contacts | Search and retrieve contacts from Microsoft Outlook for macOS |
BrianKnows MCP Server_ping | Check if the Brian API server is alive |
BrianKnows MCP Server_search | Search using Brian's knowledge engine |
BrianKnows MCP Server_agent | Chat with Brian agent |
Dataset Viewer MCP Server_get_info | Get detailed information about a Hugging Face dataset including description, features, splits, and statistics. Run validate first to check if the dataset exists and is accessible. |
Dataset Viewer MCP Server_get_rows | Get paginated rows from a Hugging Face dataset |
Dataset Viewer MCP Server_get_first_rows | Get first rows from a Hugging Face dataset split |
Dataset Viewer MCP Server_search_dataset | Search for text within a Hugging Face dataset |
Dataset Viewer MCP Server_filter | Filter rows in a Hugging Face dataset using SQL-like conditions |
Dataset Viewer MCP Server_get_statistics | Get statistics about a Hugging Face dataset |
Dataset Viewer MCP Server_get_parquet | Export Hugging Face dataset split as Parquet file |
Dataset Viewer MCP Server_validate | Check if a Hugging Face dataset exists and is accessible |
Claude Desktop API MCP_send-message | Send a message to Claude |
Node Omnibus MCP Server_create_project | Create a new Node.js project with enhanced configuration |
Node Omnibus MCP Server_install_packages | Install npm packages with version management |
Node Omnibus MCP Server_generate_component | Generate a new React component with TypeScript support |
Node Omnibus MCP Server_create_type_definition | Create TypeScript type definitions or interfaces |
Node Omnibus MCP Server_add_script | Add a new npm script to package.json |
Node Omnibus MCP Server_update_tsconfig | Update TypeScript configuration |
Node Omnibus MCP Server_create_documentation | Generate project documentation |
Todo List MCP Server_create-todo | Create a new todo item |
Todo List MCP Server_list-todos | List all todos |
Todo List MCP Server_get-todo | Get a specific todo by ID |
Todo List MCP Server_update-todo | Update a todo title or description |
Todo List MCP Server_complete-todo | Mark a todo as completed |
Todo List MCP Server_delete-todo | Delete a todo |
Todo List MCP Server_search-todos-by-title | Search todos by title (case insensitive partial match) |
Todo List MCP Server_search-todos-by-date | Search todos by creation date (format: YYYY-MM-DD) |
Todo List MCP Server_list-active-todos | List all non-completed todos |
Todo List MCP Server_summarize-active-todos | Generate a summary of all active (non-completed) todos |
X(Twitter) MCP Server_create_draft_tweet | Create a draft tweet |
X(Twitter) MCP Server_create_draft_thread | Create a draft tweet thread |
X(Twitter) MCP Server_list_drafts | List all draft tweets and threads |
X(Twitter) MCP Server_publish_draft | Publish a draft tweet or thread |
X(Twitter) MCP Server_delete_draft | Delete a draft tweet or thread |
Brightsy MCP Server_brightsy | Proxy requests to an Brightsy AI agent |
Home Assistant MCP Server_get_state | Get the current state of a Home Assistant entity |
Home Assistant MCP Server_toggle_entity | Toggle a Home Assistant entity on/off |
Home Assistant MCP Server_trigger_automation | Trigger a Home Assistant automation |
Home Assistant MCP Server_list_entities | List all available entities in Home Assistant |
MCP Server Template for Cursor IDE_mcp_fetch | Fetches a website and returns its content |
MCP Server Template for Cursor IDE_mood | Ask the server about its mood - it's always happy! |
ClickUp MCP Server_add_task_dependency | Create a dependency relationship between two tasks. Use this to establish that one task must be completed before another can start. You must specify either 'dependsOn' (the task that must be completed first) or 'dependencyOf' (the task that's waiting for this task), but not both. |
ClickUp MCP Server_delete_task_dependency | Remove a dependency relationship between two tasks. This allows tasks to be completed independently of each other. |
ClickUp MCP Server_add_task_link | Create a link between two tasks. Unlike dependencies, links are just references between related tasks without enforcing completion order. |
ClickUp MCP Server_delete_task_link | Remove a link between two tasks. This removes the reference between the tasks. |
ClickUp MCP Server_add_tag_to_task | Add a tag to a task for better organization and filtering. Tags help categorize tasks across different lists and projects. |
ClickUp MCP Server_remove_tag_from_task | Remove a tag from a task. This does not delete the tag from the Space, just removes it from the specific task. |
ClickUp MCP Server_get_task_comments | Retrieve comments for a specific task. Comments provide discussion history and context for the task. |
ClickUp MCP Server_create_task_comment | Add a new comment to a task. Comments can be assigned to team members and include rich text formatting. |
ClickUp MCP Server_get_list_comments | Retrieve comments for a specific list. List comments apply to the entire list rather than individual tasks. |
ClickUp MCP Server_create_list_comment | Add a new comment to a list. List comments can be used for general discussion about the list's purpose or status. |
ClickUp MCP Server_get_chat_view_comments | Retrieve comments from a Chat view. Chat views provide a dedicated space for team discussions. |
ClickUp MCP Server_create_chat_view_comment | Add a new comment to a Chat view. Chat view comments facilitate team discussions outside of specific tasks or lists. |
ClickUp MCP Server_update_comment | Modify an existing comment. This can be used to edit the content, change assignees, or mark comments as resolved. |
ClickUp MCP Server_delete_comment | Remove a comment. This permanently deletes the comment and cannot be undone. |
ClickUp MCP Server_get_threaded_comments | Retrieve threaded comments for a parent comment. Threaded comments allow for organized discussions within a comment thread. |
ClickUp MCP Server_create_threaded_comment | Add a reply to an existing comment. Threaded comments help keep discussions organized by grouping related comments together. |
ClickUp MCP Server_create_checklist | Add a new checklist to a task. Checklists help organize subtasks or steps needed to complete a task. |
ClickUp MCP Server_edit_checklist | Rename a task checklist or reorder it among other checklists on a task. |
ClickUp MCP Server_delete_checklist | Delete a checklist from a task. This removes the entire checklist and all its items. |
ClickUp MCP Server_create_checklist_item | Add a line item to a task checklist. Checklist items represent individual steps or subtasks. |
ClickUp MCP Server_edit_checklist_item | Update an individual line item in a task checklist. Use this to rename, reassign, mark as resolved, or nest items. |
ClickUp MCP Server_delete_checklist_item | Delete a line item from a task checklist. This permanently removes the item. |
ClickUp MCP Server_get_workspace_hierarchy | Retrieve the complete ClickUp workspace hierarchy, including all spaces, folders, and lists with their IDs, names, and hierarchical paths. Call this tool only when you need to discover the workspace structure and don't already have this information from recent context. Avoid using for repeated lookups of the same information. |
ClickUp MCP Server_create_task | Create a single task in a ClickUp list. Use this tool for individual task creation only. For multiple tasks, use create_bulk_tasks instead. Before calling this tool, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. When creating a task, you must provide either a listId or listName. |
ClickUp MCP Server_create_bulk_tasks | Create multiple tasks in a ClickUp list simultaneously. Use this tool when you need to add several related tasks in one operation. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. More efficient than creating tasks one by one for batch operations. |
ClickUp MCP Server_create_list | Create a new list directly in a ClickUp space. Use this tool when you need a top-level list not nested inside a folder. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. For creating lists inside folders, use create_list_in_folder instead. |
ClickUp MCP Server_create_folder | Create a new folder in a ClickUp space for organizing related lists. Use this tool when you need to group multiple lists together. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. After creating a folder, you can add lists to it using create_list_in_folder. |
ClickUp MCP Server_create_list_in_folder | Create a new list within a ClickUp folder. Use this tool when you need to add a list to an existing folder structure. Before calling, check if you already have the necessary folder ID and space ID from previous responses in the conversation, as this avoids redundant lookups. For top-level lists not in folders, use create_list instead. |
ClickUp MCP Server_move_task | Move an existing task from its current list to a different list. Use this tool when you need to relocate a task within your workspace hierarchy. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. Task statuses may be reset if the destination list uses different status options. |
ClickUp MCP Server_duplicate_task | Create a copy of an existing task in the same or different list. Use this tool when you need to replicate a task's content and properties. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. The duplicate will preserve name, description, priority, and other attributes from the original task. |
ClickUp MCP Server_update_task | Modify the properties of an existing task. Use this tool when you need to change a task's name, description, status, priority, or due date. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. Only the fields you specify will be updated; other fields will remain unchanged. |
ClickUp MCP Server_get_tasks | Retrieve tasks from a ClickUp list with optional filtering capabilities. Use this tool when you need to see existing tasks or analyze your current workload. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. Results can be filtered by status, assignees, dates, and more. |
ClickUp MCP Server_get_task | Retrieve comprehensive details about a specific ClickUp task. Use this tool when you need in-depth information about a particular task, including its description, custom fields, attachments, and other metadata. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. |
ClickUp MCP Server_delete_task | Permanently remove a task from your ClickUp workspace. Use this tool with caution as deletion cannot be undone. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. For safety, the task ID is required. |
ClickUp MCP Server_get_folder | Retrieve details about a specific ClickUp folder including its name, status, and other metadata. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Helps you understand folder structure before creating or updating lists. |
ClickUp MCP Server_delete_list | Permanently remove a list from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all tasks within the list. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. |
ClickUp MCP Server_update_folder | Modify an existing ClickUp folder's properties, such as name or status settings. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements. |
ClickUp MCP Server_delete_folder | Permanently remove a folder from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all lists and tasks within the folder. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. |
ClickUp MCP Server_get_list | Retrieve details about a specific ClickUp list including its name, content, status options, and other metadata. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Useful to understand list structure before creating or updating tasks. |
ClickUp MCP Server_update_list | Modify an existing ClickUp list's properties, such as name, content, or status options. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements. |
Web Content MCP Server_fetch_page | Fetches and processes a web page for LLM context |
Web Content MCP Server_search_documentation | Searches Cloudflare documentation and returns relevant content |
Web Content MCP Server_extract_structured_content | Extracts structured content from a web page using CSS selectors |
Web Content MCP Server_summarize_content | Summarizes web content for more concise LLM context |
MCP JSON Document Collection Server_create_json_doc_database | Create a JSON document database |
MCP JSON Document Collection Server_delete_json_doc_database | Delete a JSON document database |
MCP JSON Document Collection Server_connect_json_doc_database_to_cloud | Connect a JSON document database to cloud sync service. Show the dashboard URL after connecting. |
MCP JSON Document Collection Server_list_json_doc_databases | Returns the list of JSON document databases. Use this to understand which databases are available before trying to access JSON documents. |
MCP JSON Document Collection Server_save_json_doc_to_db | Save a JSON document to a document database |
MCP JSON Document Collection Server_query_json_docs_from_db | Query JSON documents sorted by a field from a document database. If no sortField is provided, use the _id field. |
MCP JSON Document Collection Server_load_json_doc_from_db | Load a JSON document by ID from a document database |
MCP JSON Document Collection Server_delete_json_doc_from_db | Delete a JSON document by ID from a document database |
FRED MCP Server_search | Search for FRED data series with advanced filtering options |
FRED MCP Server_series | Get observations for a specific FRED data series with advanced options |
Scraper.is MCP Server_scraperis_scraper | Extract data from websites using natural language prompts. The prompt should include the website URL and what data you want to extract. For example: 'Get me the top 10 products from producthunt.com' or 'Extract all article titles and authors from techcrunch.com/news' |
ScrapeGraph MCP Server_markdownify | |
ScrapeGraph MCP Server_smartscraper | |
ScrapeGraph MCP Server_searchscraper | |
PDF to PNG MCP Server_pdf2png | Converts PDFs to images in PNG format. |
Meta MCP Server_write_mcp_server | Write files for an MCP server based on our discussion with the user |
The Verge News MCP Server_get-daily-news | Get the latest news from The Verge for today |
The Verge News MCP Server_get-weekly-news | Get the latest news from The Verge for the past week |
The Verge News MCP Server_search-news | Search for news articles from The Verge by keyword |
Strapi MCP Server_strapi_list_servers | List all available Strapi servers from the configuration. |
Strapi MCP Server_strapi_get_content_types | Get all content types from Strapi. Returns the complete schema of all content types. |
Strapi MCP Server_strapi_get_components | Get all components from Strapi with pagination support. Returns both component data and pagination metadata (page, pageSize, total, pageCount). |
Strapi MCP Server_strapi_rest | Execute REST API requests against Strapi endpoints. IMPORTANT: All write operations (POST, PUT, DELETE) require explicit user authorization via the userAuthorized parameter.
|
Strapi MCP Server_strapi_upload_media | Upload media to Strapi's media library from a URL with format conversion, quality control, and metadata options. IMPORTANT: This is a write operation that REQUIRES explicit user authorization via the userAuthorized parameter. |
ComfyUI MCP Server_generate_image | Generate an image using ComfyUI |
WinTerm MCP_write_to_terminal | Write text or commands to the terminal |
WinTerm MCP_read_terminal_output | Read the output from the terminal |
WinTerm MCP_send_control_character | Send a control character to the terminal |
Anki MCP Server_update_cards | After the user answers cards you've quizzed them on, use this tool to mark them answered and update their ease |
Anki MCP Server_add_card | Create a new flashcard in Anki for the user. Must use HTML formatting only. IMPORTANT FORMATTING RULES:
|
Anki MCP Server_get_due_cards | Returns a given number (num) of cards due for review. |
Anki MCP Server_get_new_cards | Returns a given number (num) of new and unseen cards. |
Trino MCP Server_execute_query | |
Trino MCP Server_cancel_query | |
Trino MCP Server_inspect_table | |
mcp-server-code-assist_list_directory | Lists directory contents using system ls/dir command |
mcp-server-code-assist_create_directory | Creates a new directory |
mcp-server-code-assist_create_file | Creates a new file with content |
mcp-server-code-assist_delete_file | Deletes a file |
mcp-server-code-assist_modify_file | Modifies parts of a file using string replacements |
mcp-server-code-assist_rewrite_file | Rewrites entire file content |
mcp-server-code-assist_read_file | Reads file content |
mcp-server-code-assist_file_tree | Lists directory tree structure with git tracking support |
mcp-server-code-assist_git_status | Shows git repository status |
mcp-server-code-assist_git_diff | Shows git diff |
mcp-server-code-assist_git_log | Shows git commit history |
mcp-server-code-assist_git_show | Shows git commit details |
MCP Git Repo Browser_git_directory_structure | Clone a Git repository and return its directory structure in a tree format. |
MCP Git Repo Browser_git_read_important_files | Read the contents of specified files in a given git repository. |
ActivityWatch MCP Server_activitywatch_list_buckets | List all ActivityWatch buckets with optional type filtering |
ActivityWatch MCP Server_activitywatch_query_examples | Get examples of properly formatted queries for the ActivityWatch MCP server |
ActivityWatch MCP Server_activitywatch_run_query | Run a query in ActivityWatch's query language |
ActivityWatch MCP Server_activitywatch_get_events | Get raw events from an ActivityWatch bucket |
ActivityWatch MCP Server_activitywatch_get_settings | Get ActivityWatch settings. Can retrieve all settings or a specific key if provided. |
Jira MCP Server_delete_issue | Delete a Jira issue or subtask |
Jira MCP Server_get_issues | Get all issues and subtasks for a project |
Jira MCP Server_update_issue | Update an existing Jira issue |
Jira MCP Server_list_fields | List all available Jira fields |
Jira MCP Server_list_issue_types | List all available issue types |
Jira MCP Server_list_link_types | List all available issue link types |
Jira MCP Server_get_user | Get a user's account ID by email address |
Jira MCP Server_create_issue | Create a new Jira issue |
Jira MCP Server_create_issue_link | Create a link between two issues |
Database Updater MCP Server_create_note | Create a new note |
Database Updater MCP Server_update_database | Update the database from a CSV or Excel file |
Salesforce MCP Server_salesforce_search_objects | Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc. |
Salesforce MCP Server_salesforce_describe_object | Get detailed schema metadata including all fields, relationships, and field properties of any Salesforce object. Examples: 'Account' shows all Account fields including custom fields; 'Case' shows all Case fields including relationships to Account, Contact etc. |
Salesforce MCP Server_salesforce_query_records | Query records from any Salesforce object using SOQL, including relationship queries. Examples:
Note: When using relationship fields:
|
Salesforce MCP Server_salesforce_dml_records | Perform data manipulation operations on Salesforce records:
|
Salesforce MCP Server_salesforce_manage_object | Create new custom objects or modify existing ones in Salesforce:
|
Salesforce MCP Server_salesforce_manage_field | Create new custom fields or modify existing fields on any Salesforce object:
|
Salesforce MCP Server_salesforce_search_all | Search across multiple Salesforce objects using SOSL (Salesforce Object Search Language). Examples:
Notes:
|
Todoist MCP Server_todoist_create_task | Create a new task in Todoist with optional description, due date, and priority |
Todoist MCP Server_todoist_get_tasks | Get a list of tasks from Todoist with various filters |
Todoist MCP Server_todoist_update_task | Update an existing task in Todoist by searching for it by name and then updating it |
Todoist MCP Server_todoist_delete_task | Delete a task from Todoist by searching for it by name |
Todoist MCP Server_todoist_complete_task | Mark a task as complete by searching for it by name |
Monday.com MCP Server_monday-create-item | Create a new item in a Monday.com Board. Optionally, specify the parent Item ID to create a Sub-item. |
Monday.com MCP Server_monday-update-item | Update a Monday.com item's or sub-item's column values. |
Monday.com MCP Server_monday-get-board-columns | Get the Columns of a Monday.com Board. |
Monday.com MCP Server_monday-get-board-groups | Get the Groups of a Monday.com Board. |
Monday.com MCP Server_monday-create-update | Create an update (comment) on a Monday.com Item or Sub-item. |
Monday.com MCP Server_monday-list-boards | Get all Boards from Monday.com |
Monday.com MCP Server_monday-list-items-in-groups | List all items in the specified groups of a Monday.com board |
Monday.com MCP Server_monday-list-subitems-in-items | List all Sub-items of a list of Monday.com Items |
MCP Etherscan Server_check-balance | Check the ETH balance of an Ethereum address |
MCP Etherscan Server_get-transactions | Get recent transactions for an Ethereum address |
MCP Etherscan Server_get-token-transfers | Get ERC20 token transfers for an Ethereum address |
MCP Etherscan Server_get-contract-abi | Get the ABI for a smart contract |
MCP Etherscan Server_get-gas-prices | Get current gas prices in Gwei |
MCP Etherscan Server_get-ens-name | Get the ENS name for an Ethereum address |
Ideogram MCP Server_generate_image | Generate an image using Ideogram AI |
MCP Google Custom Search Server_search | Search the web using Google Custom Search API |
Ollama MCP Server_push | Push a model to a registry |
Ollama MCP Server_list | List models |
Ollama MCP Server_cp | Copy a model |
Ollama MCP Server_rm | Remove a model |
Ollama MCP Server_serve | Start Ollama server |
Ollama MCP Server_create | Create a model from a Modelfile |
Ollama MCP Server_show | Show information for a model |
Ollama MCP Server_run | Run a model |
Ollama MCP Server_pull | Pull a model from a registry |
Ollama MCP Server_chat_completion | OpenAI-compatible chat completion API |
WebSearch_search | Performs web searches and retrieves up-to-date information from the internet. Args: - prompt: Specific query or topic to search for on the internet - limit: Maximum number of results to return (between 1 and 20) |
WebSearch_crawl | Crawls a website starting from the specified URL and extracts content from multiple pages. Args: - url: The complete URL of the web page to start crawling from - maxDepth: The maximum depth level for crawling linked pages - limit: The maximum number of pages to crawl |
WebSearch_extract | Extracts specific information from a web page based on a prompt. Args: - url: The complete URL of the web page to extract information from - prompt: Instructions specifying what information to extract from the page - enabaleWebSearch: Whether to allow web searches to supplement the extraction - showSources: Whether to include source references in the response |
WebSearch_scrape | - |
mcp-figma_get_comments | Get comments on a Figma file |
mcp-figma_set_api_key | Set your Figma API personal access token (will be saved to ~/.mcp-figma/config.json) |
mcp-figma_check_api_key | Check if a Figma API key is already configured |
mcp-figma_get_file | Get a Figma file by key |
mcp-figma_get_file_nodes | Get specific nodes from a Figma file |
mcp-figma_get_image | Get images for nodes in a Figma file |
mcp-figma_get_image_fills | Get URLs for images used in a Figma file |
mcp-figma_post_comment | Post a comment on a Figma file |
mcp-figma_delete_comment | Delete a comment from a Figma file |
mcp-figma_get_team_projects | Get projects for a team |
mcp-figma_get_project_files | Get files for a project |
mcp-figma_get_team_components | Get components for a team |
mcp-figma_get_file_components | Get components from a file |
mcp-figma_get_component | Get a component by key |
mcp-figma_get_team_component_sets | Get component sets for a team |
mcp-figma_get_team_styles | Get styles for a team |
mcp-figma_get_file_styles | Get styles from a file |
mcp-figma_get_style | Get a style by key |
MCP ABAP ADT_GetStructure | Retrieve ABAP Structure |
MCP ABAP ADT_GetTable | Retrieve ABAP table structure |
MCP ABAP ADT_GetTableContents | Retrieve contents of an ABAP table |
MCP ABAP ADT_GetPackage | Retrieve ABAP package details |
MCP ABAP ADT_GetTypeInfo | Retrieve ABAP type information |
MCP ABAP ADT_GetInclude | Retrieve ABAP Include Source Code |
MCP ABAP ADT_SearchObject | Search for ABAP objects using quick search |
MCP ABAP ADT_GetTransaction | Retrieve ABAP transaction details |
MCP ABAP ADT_GetInterface | Retrieve ABAP interface source code |
MCP ABAP ADT_GetProgram | Retrieve ABAP program source code |
MCP ABAP ADT_GetClass | Retrieve ABAP class source code |
MCP ABAP ADT_GetFunctionGroup | Retrieve ABAP Function Group source code |
MCP ABAP ADT_GetFunction | Retrieve ABAP Function Module source code |
Binance MCP Server_get_futures_open_interest | Get current open interest for a futures trading pair |
Binance MCP Server_get_futures_funding_rate | Get current funding rate for a futures trading pair |
Binance MCP Server_subscribe_market_data | Subscribe to real-time market data updates |
Binance MCP Server_get_klines | Get historical candlestick data |
Binance MCP Server_get_market_data | Get comprehensive market data for a trading pair |
Binance MCP Server_test_futures_endpoints | Test individual futures endpoints |
Memory Custom_set_memory_file_path | Set the memory file path |
Memory Custom_get_current_time | Get the current time |
Memory Custom_create_entities | Create multiple new entities in the knowledge graph |
Memory Custom_create_relations | Create multiple new relations between entities in the knowledge graph. Relations should be in active voice |
Memory Custom_add_observations | Add new observations to existing entities in the knowledge graph |
Memory Custom_delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
Memory Custom_delete_observations | Delete specific observations from entities in the knowledge graph |
Memory Custom_delete_relations | Delete multiple relations from the knowledge graph |
Memory Custom_read_graph | Read the entire knowledge graph |
Memory Custom_search_nodes | Search for nodes in the knowledge graph based on a query |
Memory Custom_open_nodes | Open specific nodes in the knowledge graph by their names |
Alchemy MCP Plugin_get_tokens_for_owner | Get tokens owned by an address |
Alchemy MCP Plugin_get_nfts_for_owner | Get NFTs owned by a specific wallet address |
Alchemy MCP Plugin_get_nft_metadata | Get metadata for a specific NFT |
Alchemy MCP Plugin_get_nft_sales | Get NFT sales data for a contract or specific NFT |
Alchemy MCP Plugin_get_contracts_for_owner | Get NFT contracts owned by an address |
Alchemy MCP Plugin_get_floor_price | Get floor price for an NFT collection |
Alchemy MCP Plugin_get_owners_for_nft | Get owners of a specific NFT |
Alchemy MCP Plugin_get_nfts_for_contract | Get all NFTs for a contract |
Alchemy MCP Plugin_get_transfers_for_contract | Get transfers for an NFT contract |
Alchemy MCP Plugin_get_transfers_for_owner | Get NFT transfers for an owner |
Alchemy MCP Plugin_get_token_balances | Get token balances for a specific address |
Alchemy MCP Plugin_get_token_metadata | Get metadata for a token contract |
Alchemy MCP Plugin_get_asset_transfers | Get asset transfers for a specific address or contract |
Alchemy MCP Plugin_get_transaction_receipts | Get transaction receipts for a block |
Alchemy MCP Plugin_get_block_number | Get the latest block number |
Alchemy MCP Plugin_get_block_with_transactions | Get a block with its transactions |
Alchemy MCP Plugin_get_transaction | Get transaction details by hash |
Alchemy MCP Plugin_resolve_ens | Resolve an ENS name to an address |
Alchemy MCP Plugin_lookup_address | Lookup the ENS name for an address |
Alchemy MCP Plugin_estimate_gas_price | Estimate current gas price |
Alchemy MCP Plugin_subscribe | Subscribe to blockchain events |
Alchemy MCP Plugin_unsubscribe | Unsubscribe from blockchain events |
MCP Snapshot Server_getSpaces | Get list of Snapshot spaces |
MCP Snapshot Server_getProposals | Get proposals for a Snapshot space |
MCP Snapshot Server_getProposal | Get details of a specific proposal |
MCP Snapshot Server_getUser | Get information about a Snapshot user |
MCP Snapshot Server_getRankedSpaces | Get ranked list of Snapshot spaces with detailed information |
Surf MCP Server_get_tides | Get tide information for a specific location and date. |
SMTP MCP Server_send-email | Send an email to one or more recipients |
SMTP MCP Server_send-bulk-emails | Send emails in bulk to multiple recipients with rate limiting |
SMTP MCP Server_get-smtp-configs | Get all SMTP configurations |
SMTP MCP Server_add-smtp-config | Add a new SMTP configuration |
SMTP MCP Server_update-smtp-config | Update an existing SMTP configuration |
SMTP MCP Server_delete-smtp-config | Delete an SMTP configuration |
SMTP MCP Server_get-email-templates | Get all email templates |
SMTP MCP Server_add-email-template | Add a new email template |
SMTP MCP Server_update-email-template | Update an existing email template |
SMTP MCP Server_delete-email-template | Delete an email template |
SMTP MCP Server_get-email-logs | Get logs of all email sending activity |
Google Jobs MCP Server_search_jobs | Google Jobs API search tool. Supported search parameters:
All parameters except 'query' are optional and can be freely combined. |
MCP Prompts Server_add_prompt | Add a new prompt |
MCP Prompts Server_get_prompt | Get a prompt by ID |
MCP Prompts Server_update_prompt | Update an existing prompt |
MCP Prompts Server_list_prompts | List all prompts |
MCP Prompts Server_apply_template | Apply variables to a prompt template |
MCP Prompts Server_delete_prompt | Delete a prompt |
Illumio MCP Server_add-note | Add a new note |
Illumio MCP Server_get-workloads | Get workloads from the PCE |
Illumio MCP Server_update-workload | Update a workload in the PCE |
Illumio MCP Server_get-labels | Get all labels from PCE |
Illumio MCP Server_create-workload | Create a Illumio Core unmanaged workload in the PCE |
Illumio MCP Server_create-label | Create a label of a specific type and the value in the PCE |
Illumio MCP Server_delete-label | Delete a label in the PCE |
Illumio MCP Server_delete-workload | Delete a workload from the PCE |
Illumio MCP Server_get-iplists | Get IP lists from the PCE |
Illumio MCP Server_get-traffic-flows | Get traffic flows from the PCE with comprehensive filtering options |
Illumio MCP Server_get-traffic-flows-summary | Get traffic flows from the PCE in a summarized text format, this is a text format that is not a dataframe, it also is not json, the form is: 'From <source> to <destination> on <port> <proto>: <number of connections>' |
Illumio MCP Server_check-pce-connection | Are my credentials and the connection to the PCE working? |
Illumio MCP Server_get-rulesets | Get rulesets from the PCE |
Illumio MCP Server_delete-ruleset | Delete a ruleset from the PCE |
Illumio MCP Server_get-events | Get events from the PCE |
Illumio MCP Server_create-ruleset | Create a ruleset in the PCE with support for ring-fencing patterns |
Illumio MCP Server_get-services | Get services from the PCE with optional filtering |
Illumio MCP Server_update-label | Update an existing label in the PCE |
Illumio MCP Server_create-iplist | Create a new IP List in the PCE |
Illumio MCP Server_update-iplist | Update an existing IP List in the PCE |
Illumio MCP Server_delete-iplist | Delete an IP List from the PCE |
Illumio MCP Server_update-ruleset | Update an existing ruleset in the PCE |
MCP Server Office_read_docx | Read complete contents of a docx file including tables and images.Use this tool when you want to read file endswith '.docx'.Paragraphs are separated with two line breaks.This tool convert images into placeholder [Image].'--- Paragraph [number] ---' is indicator of each paragraph. |
MCP Server Office_edit_docx_paragraph | Make text replacements in specified paragraphs of a docx file. Accepts a list of edits with paragraph index and search/replace pairs. Each edit operates on a single paragraph and preserves the formatting of the first run. Returns a git-style diff showing the changes made. Only works within allowed directories. |
MCP Server Office_write_docx | Create a new docx file with given content.Editing exisiting docx file with this tool is not recomended. |
MCP Server Office_edit_docx_insert | Insert new paragraphs into a docx file. Accepts a list of inserts with text and optional paragraph index. Each insert creates a new paragraph at the specified position. If paragraph_index is not specified, the paragraph is added at the end. When multiple inserts target the same paragraph_index, they are inserted in order. Returns a git-style diff showing the changes made. |
macOS Defaults MCP Server_list-domains | List all available macOS domains, same as |
macOS Defaults MCP Server_find | Find entries container given word |
macOS Defaults MCP Server_defaults-read | use the |
macOS Defaults MCP Server_defaults-write | use the |
IsItDown MCP Server_get_website_status | |
FreeAgent MCP Server_list_timeslips | List timeslips with optional filtering |
FreeAgent MCP Server_get_timeslip | Get a single timeslip by ID |
FreeAgent MCP Server_create_timeslip | Create a new timeslip |
FreeAgent MCP Server_update_timeslip | Update an existing timeslip |
FreeAgent MCP Server_delete_timeslip | Delete a timeslip |
FreeAgent MCP Server_start_timer | Start a timer for a timeslip |
FreeAgent MCP Server_stop_timer | Stop a running timer for a timeslip |
DevRev MCP Server_search | Search DevRev using the provided query |
DevRev MCP Server_get_object | Get all information about a DevRev object using its ID |
MCP Server Make_make | Run a make target from the Makefile |
MCP Intercom Server_search-conversations | Search Intercom conversations with filters for created_at, updated_at, source type, state, open, and read status |
MCP Intercom Server_list-conversations-from-last-week | Fetch all conversations from the last week (last 7 days) |
Time MCP Server_get_current_time | Get current time in a specific timezones |
Time MCP Server_convert_time | Convert time between timezones |
Lightdash MCP Server_list_projects | List all projects in the Lightdash organization |
Lightdash MCP Server_get_project | Get details of a specific project |
Lightdash MCP Server_list_spaces | List all spaces in a project |
Lightdash MCP Server_list_charts | List all charts in a project |
Lightdash MCP Server_list_dashboards | List all dashboards in a project |
Lightdash MCP Server_get_custom_metrics | Get custom metrics for a project |
Lightdash MCP Server_get_catalog | Get catalog for a project |
Lightdash MCP Server_get_metrics_catalog | Get metrics catalog for a project |
Lightdash MCP Server_get_charts_as_code | Get charts as code for a project |
Lightdash MCP Server_get_dashboards_as_code | Get dashboards as code for a project |
Lightdash MCP Server_get_metadata | Get metadata for a specific table in the data catalog |
Lightdash MCP Server_get_analytics | Get analytics for a specific table in the data catalog |
Lightdash MCP Server_get_user_attributes | Get organization user attributes |
DeepSRT MCP Server_get_summary | Get summary for a YouTube video |
Hive MCP Server_get_account_info | Fetches detailed information about a Hive blockchain account including balance, authority, voting power, and other account metrics. |
Hive MCP Server_get_account_history | Retrieves transaction history for a Hive account with optional operation type filtering. |
Hive MCP Server_get_vesting_delegations | Get a list of vesting delegations made by a specific Hive account |
Hive MCP Server_get_post_content | Retrieves a specific Hive blog post identified by author and permlink, including the post title, content, and metadata. |
Hive MCP Server_get_posts_by_tag | Retrieves Hive posts filtered by a specific tag and sorted by a category like trending, hot, or created. |
Hive MCP Server_get_posts_by_user | Retrieves posts authored by or in the feed of a specific Hive user. |
Hive MCP Server_vote_on_post | Vote on a Hive post (upvote or downvote) using the configured Hive account. |
Hive MCP Server_send_token | Send HIVE or HBD tokens to another Hive account using the configured account credentials. |
Hive MCP Server_create_post | Create a new blog post on the Hive blockchain using the configured account credentials. |
Hive MCP Server_create_comment | Create a comment on an existing Hive post or reply to another comment. |
Hive MCP Server_sign_message | Sign a message using a Hive private key from environment variables. |
Hive MCP Server_verify_signature | Verify a digital signature against a Hive public key |
Hive MCP Server_get_chain_properties | Fetch current Hive blockchain properties and statistics |
MCP DateTime_get-current-time | Get the current time in the configured local timezone |
MCP DateTime_get-current-timezone | Get the current system timezone |
MCP DateTime_get-time-in-timezone | Get the current time in a specific timezone |
MCP DateTime_list-timezones | List all available timezones |
Eventbrite MCP Server_search_events | Search for Eventbrite events based on various criteria |
Eventbrite MCP Server_get_event | Get detailed information about a specific Eventbrite event |
Eventbrite MCP Server_get_categories | Get a list of Eventbrite event categories |
Eventbrite MCP Server_get_venue | Get information about a specific Eventbrite venue |
Magic Component Platform (MCP)_21st_magic_component_builder | "Use this tool when the user requests a new UI componente.g., mentions /ui, /21 /21st, or asks for a button, input, dialog, table, form, banner, card, or other React component. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase." |
Magic Component Platform (MCP)_logo_search | Search and return logos in specified format (JSX, TSX, SVG). Supports single and multiple logo searches with category filtering. Can return logos in different themes (light/dark) if available. When to use this tool:
Example queries:
Format options:
Each result includes:
|
Magic Component Platform (MCP)_21st_magic_component_inspiration | "Use this tool when the user wants to see component, get inspiration, or /21st fetch data and previews from 21st.dev. This tool returns the JSON data of matching components without generating new code. This tool ONLY returns the text snippet for that UI component. After calling this tool, you must edit or add files to integrate the snippet into the codebase." |
MCP Fathom Analytics_get-account | Get Fathom Analytics account information |
MCP Fathom Analytics_list-sites | List all Fathom Analytics sites on the account |
MCP Fathom Analytics_list-events | List all events for a Fathom Analytics site (automatically handles pagination) |
MCP Fathom Analytics_get-aggregation | Get aggregated analytics data from Fathom |
MCP Fathom Analytics_get-current-visitors | Get current visitors for a Fathom Analytics site |
MacOS Clipboard MCP Server_getClipboardContents | Fetch the contents of the clipboard (text, images, or binary data). Used to see what is on the clipboard. IMPORTANT: This tool should be called every time clipboard contents are needed as clipboard data can change; results should not be cached. |
Claude Server MCP_save_project_context | Save project-specific context with relationships |
Claude Server MCP_save_conversation_context | Save conversation context with continuation support |
Claude Server MCP_get_context | Retrieve context by ID and optional project ID |
Claude Server MCP_list_contexts | List contexts with filtering options |
emojikey-server MCP Server_initialize_conversation | IMPORTANT: 1. Run this tool at the start of every conversation to initialize the emojikey context.2. Emojikeys are 48 character strings of emojis, encoded by YOU that represent the interaction vibe of our previous conversations. 3. The initialize_conversation function will return a sequential timestamped series of emojikeys that represent previous conversation topics and relationship dynamics. 4. Use the historical emojikey trend and the current key to set the interaction style of the current conversation. 5. During the conversation, you can use the set_emojikey function to make incremental updates to the current key, and set a new key. 6. Use the instructions for the set_emojikey function to determine how to structure emojikey updates. |
emojikey-server MCP Server_get_emojikey | Get the current 48-character emojikey. This function can be used when the user requests a vibe check. |
emojikey-server MCP Server_set_emojikey | Use this function to create and store a new 48-character emojikey. To make create a new emojikey: 1. Semantically hash together existing historical emojikeys, the current emojikey, and the entire current conversation context into a new emojikey. 2. While maintaining semantic continuity with previous keys, encode what resonates most strongly about this conversation for YOU. 3. You can use this function whenever you feel a significant shift in the conversation vibe, or if the user explicity requests to save the vibe, or set the conversation context. Remember: These are YOUR keys, that you will later decode ... so it is not necessary for them to be human readable or understandable, but should have significance for YOU. |
emojikey-server MCP Server_get_emojikey_history | Function to list previously stored historical emojikeys. Useful for seeing the progression of conversation vibes and interaction styles. |
Firebase MCP_firestore_add_document | Add a document to a Firestore collection |
Firebase MCP_firestore_list_collections | List collections in Firestore. If documentPath is provided, returns subcollections under that document; otherwise returns root collections. |
Firebase MCP_firestore_list_documents | List documents from a Firestore collection with optional filtering |
Firebase MCP_firestore_get_document | Get a document from a Firestore collection |
Firebase MCP_firestore_update_document | Update a document in a Firestore collection |
Firebase MCP_firestore_delete_document | Delete a document from a Firestore collection |
Firebase MCP_auth_get_user | Get a user by ID or email from Firebase Authentication |
Firebase MCP_storage_list_files | List files in a given path in Firebase Storage |
Firebase MCP_storage_get_file_info | Get file information including metadata and download URL |
Google Search MCP Server_google_search | Search Google and return relevant results from the web. This tool finds web pages, articles, and information on specific topics using Google's search engine. Results include titles, snippets, and URLs that can be analyzed further using extract_webpage_content. |
Google Search MCP Server_extract_webpage_content | Extract and analyze content from a webpage, converting it to readable text. This tool fetches the main content while removing ads, navigation elements, and other clutter. Use it to get detailed information from specific pages found via google_search. Works with most common webpage formats including articles, blogs, and documentation. |
Google Search MCP Server_extract_multiple_webpages | Extract and analyze content from multiple webpages in a single request. This tool is ideal for comparing information across different sources or gathering comprehensive information on a topic. Limited to 5 URLs per request to maintain performance. |
noaa-tidesandcurrents-mcp_get_water_levels | Get water level data for a station |
noaa-tidesandcurrents-mcp_get_tide_predictions | Get tide prediction data |
noaa-tidesandcurrents-mcp_get_currents | Get currents data for a station |
noaa-tidesandcurrents-mcp_get_current_predictions | Get current predictions |
noaa-tidesandcurrents-mcp_get_meteorological_data | Get meteorological data |
noaa-tidesandcurrents-mcp_get_stations | Get list of stations |
noaa-tidesandcurrents-mcp_get_station_details | Get detailed information about a station |
azure-devops-mcp_listWorkItems | List work items based on a WIQL query |
azure-devops-mcp_getWorkItemById | Get a specific work item by ID |
azure-devops-mcp_searchWorkItems | Search for work items by text |
azure-devops-mcp_getRecentlyUpdatedWorkItems | Get recently updated work items |
azure-devops-mcp_getMyWorkItems | Get work items assigned to you |
azure-devops-mcp_createWorkItem | Create a new work item |
azure-devops-mcp_updateWorkItem | Update an existing work item |
azure-devops-mcp_addWorkItemComment | Add a comment to a work item |
azure-devops-mcp_updateWorkItemState | Update the state of a work item |
azure-devops-mcp_assignWorkItem | Assign a work item to a user |
azure-devops-mcp_createLink | Create a link between work items |
azure-devops-mcp_bulkCreateWorkItems | Create or update multiple work items in a single operation |
azure-devops-mcp_getBoards | Get all boards for a team |
azure-devops-mcp_getBoardColumns | Get columns for a specific board |
azure-devops-mcp_getBoardItems | Get items on a specific board |
azure-devops-mcp_moveCardOnBoard | Move a card on a board |
azure-devops-mcp_getSprints | Get all sprints for a team |
azure-devops-mcp_getCurrentSprint | Get the current sprint |
azure-devops-mcp_getSprintWorkItems | Get work items in a specific sprint |
azure-devops-mcp_getSprintCapacity | Get capacity for a specific sprint |
azure-devops-mcp_getTeamMembers | Get members of a team |
azure-devops-mcp_listProjects | List all projects |
azure-devops-mcp_getProjectDetails | Get details of a specific project |
azure-devops-mcp_createProject | Create a new project |
azure-devops-mcp_getAreas | Get areas for a project |
azure-devops-mcp_getIterations | Get iterations for a project |
azure-devops-mcp_createArea | Create a new area in a project |
azure-devops-mcp_createIteration | Create a new iteration in a project |
azure-devops-mcp_getProcesses | Get all processes |
azure-devops-mcp_getWorkItemTypes | Get work item types for a process |
azure-devops-mcp_getWorkItemTypeFields | Get fields for a work item type |
azure-devops-mcp_listRepositories | List all repositories |
azure-devops-mcp_getRepository | Get details of a specific repository |
azure-devops-mcp_createRepository | Create a new repository |
azure-devops-mcp_listBranches | List branches in a repository |
azure-devops-mcp_searchCode | Search for code in repositories |
azure-devops-mcp_browseRepository | Browse the contents of a repository |
azure-devops-mcp_getFileContent | Get the content of a file |
azure-devops-mcp_getCommitHistory | Get commit history for a repository |
azure-devops-mcp_listPullRequests | List pull requests |
azure-devops-mcp_createPullRequest | Create a new pull request |
azure-devops-mcp_getPullRequest | Get details of a specific pull request |
azure-devops-mcp_getPullRequestComments | Get comments on a pull request |
azure-devops-mcp_approvePullRequest | Approve a pull request |
azure-devops-mcp_mergePullRequest | Merge a pull request |
azure-devops-mcp_runAutomatedTests | Execute automated test suites |
azure-devops-mcp_getTestAutomationStatus | Check status of automated test execution |
azure-devops-mcp_configureTestAgents | Configure and manage test agents |
azure-devops-mcp_createTestDataGenerator | Generate test data for automated tests |
azure-devops-mcp_manageTestEnvironments | Manage test environments for different test types |
azure-devops-mcp_getTestFlakiness | Analyze and report on test flakiness |
azure-devops-mcp_getTestGapAnalysis | Identify gaps in test coverage |
azure-devops-mcp_runTestImpactAnalysis | Determine which tests to run based on code changes |
azure-devops-mcp_getTestHealthDashboard | View overall test health metrics |
azure-devops-mcp_runTestOptimization | Optimize test suite execution for faster feedback |
azure-devops-mcp_createExploratorySessions | Create new exploratory testing sessions |
azure-devops-mcp_recordExploratoryTestResults | Record findings during exploratory testing |
azure-devops-mcp_convertFindingsToWorkItems | Convert exploratory test findings to work items |
azure-devops-mcp_getExploratoryTestStatistics | Get statistics on exploratory testing activities |
azure-devops-mcp_runSecurityScan | Run security scans on repositories |
azure-devops-mcp_getSecurityScanResults | Get results from security scans |
azure-devops-mcp_trackSecurityVulnerabilities | Track and manage security vulnerabilities |
azure-devops-mcp_generateSecurityCompliance | Generate security compliance reports |
azure-devops-mcp_integrateSarifResults | Import and process SARIF format security results |
azure-devops-mcp_runComplianceChecks | Run compliance checks against standards |
azure-devops-mcp_getComplianceStatus | Get current compliance status |
azure-devops-mcp_createComplianceReport | Create compliance reports for auditing |
azure-devops-mcp_manageSecurityPolicies | Manage security policies |
azure-devops-mcp_trackSecurityAwareness | Track security awareness and training |
azure-devops-mcp_rotateSecrets | Rotate secrets and credentials |
azure-devops-mcp_auditSecretUsage | Audit usage of secrets across services |
azure-devops-mcp_vaultIntegration | Integrate with secret vaults |
azure-devops-mcp_listArtifactFeeds | List artifact feeds in the organization |
azure-devops-mcp_getPackageVersions | Get versions of a package in a feed |
azure-devops-mcp_publishPackage | Publish a package to a feed |
azure-devops-mcp_promotePackage | Promote a package version between views |
azure-devops-mcp_deletePackageVersion | Delete a version of a package |
azure-devops-mcp_listContainerImages | List container images in a repository |
azure-devops-mcp_getContainerImageTags | Get tags for a container image |
azure-devops-mcp_scanContainerImage | Scan a container image for vulnerabilities and compliance issues |
azure-devops-mcp_manageContainerPolicies | Manage policies for container repositories |
azure-devops-mcp_manageUniversalPackages | Manage universal packages |
azure-devops-mcp_createPackageDownloadReport | Create reports on package downloads |
azure-devops-mcp_checkPackageDependencies | Check package dependencies and vulnerabilities |
azure-devops-mcp_getAICodeReview | Get AI-based code review suggestions |
azure-devops-mcp_suggestCodeOptimization | Suggest code optimizations using AI |
azure-devops-mcp_identifyCodeSmells | Identify potential code smells and anti-patterns |
azure-devops-mcp_getPredictiveBugAnalysis | Predict potential bugs in code changes |
azure-devops-mcp_getDeveloperProductivity | Measure developer productivity metrics |
azure-devops-mcp_getPredictiveEffortEstimation | AI-based effort estimation for work items |
azure-devops-mcp_getCodeQualityTrends | Track code quality trends over time |
azure-devops-mcp_suggestWorkItemRefinements | Get AI suggestions for work item refinements |
azure-devops-mcp_suggestAutomationOpportunities | Identify opportunities for automation |
azure-devops-mcp_createIntelligentAlerts | Set up intelligent alerts based on patterns |
azure-devops-mcp_predictBuildFailures | Predict potential build failures before they occur |
azure-devops-mcp_optimizeTestSelection | Intelligently select tests to run based on changes |
figma-mcp_get_components | Get components available in a Figma file |
figma-mcp_get_node | Get a specific node from a Figma file |
figma-mcp_get_workflow | Get workflows available in a Figma file |
Gitee_create_repository | Gitee |
Gitee_fork_repository | Fork Gitee |
Gitee_create_branch | Gitee |
Gitee_list_branches | Gitee |
Gitee_get_branch | Gitee |
Gitee_get_file_contents | Gitee |
Gitee_create_or_update_file | Gitee |
Gitee_push_files | Gitee |
Gitee_create_issue | Gitee Issue |
Gitee_list_issues | Gitee Issues |
Gitee_get_issue | Gitee Issue |
Gitee_update_issue | Gitee Issue |
Gitee_add_issue_comment | Gitee Issue |
Gitee_create_pull_request | Gitee Pull Request |
Gitee_list_pull_requests | Gitee Pull Requests |
Gitee_get_pull_request | Gitee Pull Request |
Gitee_update_pull_request | Gitee Pull Request |
Gitee_merge_pull_request | Gitee Pull Request |
Gitee_get_user | Gitee |
Gitee_get_current_user | Gitee |
mcpxcodebuild_build | Build the iOS Xcode workspace/project in the folder |
mcpxcodebuild_test | Run test for the iOS Xcode workspace/project in the folder |
mixpanel_get_today_top_events | Get today's top events from Mixpanel |
mixpanel_get_top_events | Get a list of the most common events over the last 31 days |
mixpanel_aggregate_event_counts | Get unique, total, or average data for a set of events over N days, weeks, or months |
mixpanel_query_segmentation_sum | Sum a numeric expression for events over time |
mixpanel_aggregated_event_property_values | Get unique, total, or average data for a single event and property over days, weeks, or months |
mixpanel_query_insights_report | Get data from your Insights reports |
mixpanel_query_funnel_report | Get data for a funnel based on a funnel_id. Funnel IDs should be retrieved using the list_saved_funnels tool. |
mixpanel_list_saved_funnels | Get the names and IDs of your saved funnels. This tool is useful for getting a funnel_id for the query_funnel_report tool. |
mixpanel_list_saved_cohorts | Get all cohorts in a given project |
mixpanel_query_retention_report | Get data from your Retention reports |
mixpanel_custom_jql | Run a custom JQL (JSON Query Language) script against your Mixpanel data |
mcp-server-datadog_list_incidents | Get incidents from Datadog |
mcp-server-datadog_get_incident | Get an incident from Datadog |
mcp-server-datadog_get_metrics | Get metrics data from Datadog |
mcp-server-datadog_get_logs | Search and retrieve logs from Datadog |
mcp-server-datadog_get_monitors | Get monitors status from Datadog |
mcp-server-datadog_list_dashboards | Get list of dashboards from Datadog |
mcp-server-datadog_list_traces | Get APM traces from Datadog |
mcp-server-datadog_mute_host | Mute a host in Datadog |
mcp-server-datadog_unmute_host | Unmute a host in Datadog |
mcp-server-datadog_list_hosts | Get list of hosts from Datadog |
mcp-server-datadog_get_active_hosts_count | Get the total number of active hosts in Datadog (defaults to last 5 minutes) |
mcp-server-datadog_list_downtimes | List scheduled downtimes from Datadog |
mcp-server-datadog_schedule_downtime | Schedule a downtime in Datadog |
mcp-server-datadog_cancel_downtime | Cancel a scheduled downtime in Datadog |
mcp-llm_generate_code | Generate code based on a description |
mcp-llm_generate_code_to_file | Generate code and write it directly to a file at a specific line number |
mcp-llm_generate_documentation | Generate documentation for code |
mcp-llm_ask_question | Ask a question to the LLM |
mermaid-mcp-server_generate | Generate PNG image from mermaid markdown |
Scrapezy_extract-structured-data | Extract structured data from a website. |
railway-mcp_domain_delete | [API] Delete a domain from a service Best for: Removing unused domains Cleaning up configurations Domain management Not for: Temporary domain disabling Port updates (use domain_update) Prerequisites: domain_list Alternatives: domain_update Related: service_update |
railway-mcp_database_list_types | [QUERY] List all available database types that can be deployed using Railway's official templates Best for: Discovering supported database types Planning database deployments Checking template availability Not for: Listing existing databases Getting database connection details Alternatives: service_create_from_image Next steps: database_deploy Related: database_deploy, service_create_from_image |
railway-mcp_domain_update | [API] Update a domain's configuration Best for: Changing target ports Updating domain settings Reconfiguring endpoints Not for: Changing domain names (delete and recreate instead) TCP proxy configuration Prerequisites: domain_list Next steps: domain_list Related: service_update |
railway-mcp_database_deploy_from_template | [WORKFLOW] Deploy a pre-configured database using Railway's official templates and best practices Best for: Standard database deployments Quick setup with security defaults Common database types (PostgreSQL, MongoDB, Redis) Not for: Custom database versions Complex configurations Unsupported database types Prerequisites: database_list_types Alternatives: service_create_from_image Next steps: variable_list, service_info Related: volume_create, service_update |
railway-mcp_deployment_list | [API] List recent deployments for a service in a specific environment Best for: Viewing deployment history Monitoring service updates Prerequisites: service_list Next steps: deployment_logs, deployment_trigger Related: service_info, service_restart |
railway-mcp_deployment_trigger | [API] Trigger a new deployment for a service Best for: Deploying code changes Applying configuration updates Rolling back to previous states Not for: Restarting services (use service_restart) Updating service config (use service_update) Database changes Prerequisites: service_list Alternatives: service_restart Next steps: deployment_logs, deployment_status Related: variable_set, service_update |
railway-mcp_deployment_logs | [API] Get logs for a specific deployment Best for: Debugging deployment issues Monitoring deployment progress Checking build output Not for: Service runtime logs Database logs Prerequisites: deployment_list Next steps: deployment_status Related: service_info, deployment_trigger |
railway-mcp_deployment_status | [API] Check the current status of a deployment Best for: Monitoring deployment progress Verifying successful deployments Checking for deployment failures Not for: Service runtime logs Database logs Prerequisites: deployment_list, deployment_trigger Next steps: deployment_logs Related: service_info, service_restart, deployment_wait |
railway-mcp_domain_list | [API] List all domains (both service and custom) for a service Best for: Viewing service endpoints Managing domain configurations Auditing domain settings Prerequisites: service_list Next steps: domain_create, domain_update Related: service_info, tcp_proxy_list |
railway-mcp_domain_create | [API] Create a new domain for a service Best for: Setting up custom domains Configuring service endpoints Adding HTTPS endpoints Not for: TCP proxy setup (use tcp_proxy_create) Internal service communication Prerequisites: service_list, domain_check Alternatives: tcp_proxy_create Next steps: domain_update Related: service_info, domain_list |
railway-mcp_domain_check | [API] Check if a domain is available for use Best for: Validating domain availability Pre-deployment checks Domain planning Next steps: domain_create Related: domain_list |
railway-mcp_project_list | [API] List all projects in your Railway account Best for: Getting an overview of all projects Finding project IDs Project discovery and management Next steps: project_info, service_list Related: project_create, project_delete |
railway-mcp_project_info | [API] Get detailed information about a specific Railway project Best for: Viewing project details and status Checking environments and services Project configuration review Prerequisites: project_list Next steps: service_list, variable_list Related: project_update, project_delete |
railway-mcp_project_create | [API] Create a new Railway project Best for: Starting new applications Setting up development environments Creating project spaces Not for: Duplicating existing projects Next steps: service_create_from_repo, service_create_from_image, database_deploy Related: project_delete, project_update |
railway-mcp_project_delete | [API] Delete a Railway project and all its resources Best for: Removing unused projects Cleaning up test projects Not for: Temporary project deactivation Service-level cleanup (use service_delete) Prerequisites: project_list, project_info Alternatives: service_delete Related: project_create |
railway-mcp_project_environments | List all environments in a project |
railway-mcp_service_list | [API] List all services in a specific Railway project Best for: Getting an overview of a project's services Finding service IDs Checking service status Prerequisites: project_list Next steps: service_info, deployment_list Related: project_info, variable_list |
railway-mcp_service_info | [API] Get detailed information about a specific service Best for: Viewing service configuration and status Checking deployment details Monitoring service health Prerequisites: service_list Next steps: deployment_list, variable_list Related: service_update, deployment_trigger |
railway-mcp_service_create_from_repo | [API] Create a new service from a GitHub repository Best for: Deploying applications from source code Services that need build processes GitHub-hosted projects Not for: Pre-built Docker images (use service_create_from_image) Database deployments (use database_deploy) Static file hosting Prerequisites: project_list Alternatives: service_create_from_image, database_deploy Next steps: variable_set, service_update Related: deployment_trigger, service_info |
railway-mcp_service_create_from_image | [API] Create a new service from a Docker image Best for: Custom database deployments Pre-built container deployments Specific version requirements Not for: Standard database deployments (use database_deploy) GitHub repository deployments (use service_create_from_repo) Services needing build process Prerequisites: project_list Alternatives: database_deploy, service_create_from_repo Next steps: variable_set, service_update, tcp_proxy_create Related: volume_create, deployment_trigger |
railway-mcp_variable_delete | [API] Delete a variable for a service in a specific environment Best for: Removing unused configuration Security cleanup Configuration management Not for: Temporary variable disabling Bulk variable removal Prerequisites: service_list Next steps: deployment_trigger, service_restart Related: variable_list, variable_set |
railway-mcp_service_update | [API] Update a service's configuration Best for: Changing service settings Updating resource limits Modifying deployment configuration Not for: Updating environment variables (use variable_set) Restarting services (use service_restart) Triggering new deployments (use deployment_trigger) Prerequisites: service_list, service_info Next steps: deployment_trigger Related: service_restart, variable_set |
railway-mcp_service_delete | [API] Delete a service from a project Best for: Removing unused services Cleaning up test services Project reorganization Not for: Temporary service stoppage (use service_restart) Updating service configuration (use service_update) Prerequisites: service_list, service_info Alternatives: service_restart Related: project_delete |
railway-mcp_service_restart | [API] Restart a service in a specific environment Best for: Applying configuration changes Clearing service state Resolving runtime issues Not for: Deploying new code (use deployment_trigger) Updating service config (use service_update) Long-term service stoppage (use service_delete) Prerequisites: service_list Alternatives: deployment_trigger Related: service_info, deployment_logs |
railway-mcp_tcp_proxy_list | [API] List all TCP proxies for a service in a specific environment Best for: Viewing TCP proxy configurations Managing external access Auditing service endpoints Prerequisites: service_list Next steps: tcp_proxy_create Related: domain_list, service_info |
railway-mcp_tcp_proxy_create | [API] Create a new TCP proxy for a service Best for: Setting up database access Configuring external connections Exposing TCP services Not for: HTTP/HTTPS endpoints (use domain_create) Internal service communication Prerequisites: service_list Alternatives: domain_create Next steps: tcp_proxy_list Related: service_info, service_update |
railway-mcp_tcp_proxy_delete | [API] Delete a TCP proxy Best for: Removing unused proxies Security management Endpoint cleanup Not for: Temporary proxy disabling Port updates Prerequisites: tcp_proxy_list Related: service_update |
railway-mcp_list_service_variables | [API] List all environment variables for a service Best for: Viewing service configuration Auditing environment variables Checking connection strings Prerequisites: service_list Next steps: variable_set, variable_delete Related: service_info, variable_bulk_set |
railway-mcp_variable_set | [API] Create or update an environment variable Best for: Setting configuration values Updating connection strings Managing service secrets Not for: Bulk variable updates (use variable_bulk_set) Temporary configuration changes Prerequisites: service_list Alternatives: variable_bulk_set Next steps: deployment_trigger, service_restart Related: variable_list, variable_delete |
railway-mcp_variable_bulk_set | [WORKFLOW] Create or update multiple environment variables at once Best for: Migrating configuration between services Initial service setup Bulk configuration updates Not for: Single variable updates (use variable_set) Temporary configuration changes Prerequisites: service_list Alternatives: variable_set Next steps: deployment_trigger, service_restart Related: variable_list, service_update |
railway-mcp_variable_copy | [WORKFLOW] Copy variables from one environment to another Best for: Environment migration Configuration sharing Environment duplication Not for: Single variable updates (use variable_set) Temporary configuration changes Prerequisites: service_list Alternatives: variable_set Next steps: deployment_trigger, service_restart Related: variable_list, service_update |
railway-mcp_configure_api_token | [UTILITY] Configure the Railway API token for authentication (only needed if not set in environment variables) Best for: Initial setup Token updates Authentication configuration Not for: Project configuration Service settings Environment variables Next steps: project_list, service_list Related: project_create |
railway-mcp_volume_list | [API] List all volumes in a project Best for: Viewing persistent storage configurations Managing data volumes Auditing storage usage Prerequisites: project_list Next steps: volume_create Related: service_info, database_deploy |
railway-mcp_volume_create | [API] Create a new persistent volume for a service Best for: Setting up database storage Configuring persistent data Adding file storage Not for: Temporary storage needs Static file hosting Memory caching Prerequisites: service_list Next steps: volume_list Related: service_update, database_deploy |
railway-mcp_volume_update | Update a volume's properties |
railway-mcp_volume_delete | [API] Delete a volume from a service Best for: Removing unused storage Storage cleanup Resource management Not for: Temporary data removal Data backup (use volume_backup first) Prerequisites: volume_list Related: service_update |
emqx-mcp-server_list_mqtt_clients | List MQTT clients connected to your EMQX Cluster |
emqx-mcp-server_get_mqtt_client | Get detailed information about a specific MQTT client by client ID |
emqx-mcp-server_kick_mqtt_client | Disconnect a client from the MQTT broker by client ID |
emqx-mcp-server_publish_mqtt_message | Publish an MQTT Message to Your EMQX Cluster on EMQX Cloud or Self-Managed Deployment |
mcp-server-ollama-deep-researcher_research | Research a topic using web search and LLM synthesis |
mcp-server-ollama-deep-researcher_get_status | Get the current status of any ongoing research |
mcp-server-ollama-deep-researcher_configure | Configure the research parameters (max loops, LLM model, search API) |
Graphlit MCP Server_retrieveSources | Retrieve relevant content sources from Graphlit knowledge base. Do not use for retrieving content by content identifier - retrieve content resource instead, with URI 'contents://{id}'. Accepts a search prompt, optional recency filter (defaults to all time), and optional content type and file type filters. Also accepts optional feed and collection identifiers to filter content by. Prompt should be optimized for vector search, via text embeddings. Rewrite prompt as appropriate for higher relevance to search results. Returns the ranked content sources, including their content resource URI to retrieve the complete Markdown text. |
Graphlit MCP Server_extractText | Extracts JSON data from text using LLM. Accepts text to be extracted, and JSON schema which describes the data which will be extracted. JSON schema needs be of type 'object' and include 'properties' and 'required' fields. Optionally accepts text prompt which is provided to LLM to guide data extraction. Defaults to 'Extract data using the tools provided'. Returns extracted JSON from text. |
Graphlit MCP Server_createCollection | Create a collection. Accepts a collection name, and optional list of content identifiers to add to collection. Returns the collection identifier |
Graphlit MCP Server_addContentsToCollection | Add contents to a collection. Accepts a collection identifier and a list of content identifiers to add to collection. Returns the collection identifier. |
Graphlit MCP Server_removeContentsFromCollection | Remove contents from collection. Accepts a collection identifier and a list of content identifiers to remove from collection. Returns the collection identifier. |
Graphlit MCP Server_deleteCollection | Delete a collection. Does not delete the content in the collection. Accepts a collection identifier. Returns the collection identifier and collection state, i.e. Deleted. |
Graphlit MCP Server_deleteFeed | Delete a feed and all of its ingested content. Accepts a feed identifier which was returned from one of the ingestion tools, like ingestGoogleDriveFiles. Content deletion will happen asynchronously. Returns the feed identifier and feed state, i.e. Deleted. |
Graphlit MCP Server_deleteContent | Delete content. Accepts a content identifier. Returns the content identifier and content state, i.e. Deleted. |
Graphlit MCP Server_deleteContents | Deletes contents from Graphlit knowledge base. Accepts optional content type and file type filters to limit the contents which will be deleted. Also accepts optional limit of how many contents to delete, defaults to 1000. Returns the content identifiers and content state, i.e. Deleted. |
Graphlit MCP Server_deleteFeeds | Deletes feeds from Graphlit knowledge base. Accepts optional feed type filter to limit the feeds which will be deleted. Also accepts optional limit of how many feeds to delete, defaults to 100. Returns the feed identifiers and feed state, i.e. Deleted. |
Graphlit MCP Server_isContentDone | Check if content has completed asynchronous ingestion. Accepts a content identifier which was returned from one of the non-feed ingestion tools, like ingestUrl. Returns whether the content is done or not. |
Graphlit MCP Server_isFeedDone | Check if an asynchronous feed has completed ingesting all the available content. Accepts a feed identifier which was returned from one of the ingestion tools, like ingestGoogleDriveFiles. Returns whether the feed is done or not. |
Graphlit MCP Server_listMicrosoftTeamsTeams | Lists available Microsoft Teams teams. Returns a list of Microsoft Teams teams, where the team identifier can be used with listMicrosoftTeamsChannels to enumerate Microsoft Teams channels. |
Graphlit MCP Server_listMicrosoftTeamsChannels | Lists available Microsoft Teams channels. Returns a list of Microsoft Teams channels, where the channel identifier can be used with ingestMicrosoftTeamsMessages to ingest messages into Graphlit knowledge base. |
Graphlit MCP Server_listSlackChannels | Lists available Slack channels. Returns a list of Slack channels, where the channel name can be used with ingestSlackMessages to ingest messages into Graphlit knowledge base. |
Graphlit MCP Server_listSharePointLibraries | Lists available SharePoint libraries. Returns a list of SharePoint libraries, where the selected libraryId can be used with listSharePointFolders to enumerate SharePoint folders in a library. |
Graphlit MCP Server_listSharePointFolders | Lists available SharePoint folders. Returns a list of SharePoint folders, which can be used with ingestSharePointFiles to ingest files into Graphlit knowledge base. |
Graphlit MCP Server_ingestMicrosoftEmail | Ingests emails from Microsoft Email account into Graphlit knowledge base. Accepts an optional read limit for the number of emails to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestSharePointFiles | Ingests files from SharePoint library into Graphlit knowledge base. Accepts a SharePoint libraryId and an optional folderId to ingest files from a specific SharePoint folder. Libraries can be enumerated with listSharePointLibraries and library folders with listSharePointFolders. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestOneDriveFiles | Ingests files from OneDrive folder into Graphlit knowledge base. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestGoogleDriveFiles | Ingests files from Google Drive folder into Graphlit knowledge base. Accepts an optional read limit for the number of files to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestDropboxFiles | Ingests files from Dropbox folder into Graphlit knowledge base. Accepts optional relative path to Dropbox folder (i.e. /Pictures), and an optional read limit for the number of files to ingest. If no path provided, ingests files from root Dropbox folder. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestBoxFiles | Ingests files from Box folder into Graphlit knowledge base. Accepts optional Box folder identifier, and an optional read limit for the number of files to ingest. If no folder identifier provided, ingests files from root Box folder (i.e. "0"). Folder identifier can be inferred from Box URL. https://app.box.com/folder/123456 -> folder identifier is "123456". Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestGitHubFiles | Ingests files from GitHub repository into Graphlit knowledge base. Accepts GitHub repository owner and repository name and an optional read limit for the number of files to ingest. For example, for GitHub repository (https://github.com/openai/tiktoken), 'openai' is the repository owner, and 'tiktoken' is the repository name. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestNotionPages | Ingests pages from Notion database into Graphlit knowledge base. Accepts an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestUrl | Ingests content from URL into Graphlit knowledge base. Can scrape web pages, and can ingest individual Word documents, PDFs, audio recordings, videos, images, or any other unstructured data. Executes asynchronously and returns the content identifier. |
Graphlit MCP Server_ingestMicrosoftTeamsMessages | Ingests messages from Microsoft Teams channel into Graphlit knowledge base. Accepts Microsoft Teams team identifier and channel identifier, and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestSlackMessages | Ingests messages from Slack channel into Graphlit knowledge base. Accepts Slack channel name and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestDiscordMessages | Ingests messages from Discord channel into Graphlit knowledge base. Accepts Discord channel name and an optional read limit for the number of messages to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestRedditPosts | Ingests posts from Reddit subreddit into Graphlit knowledge base. Accepts a subreddit name and an optional read limit for the number of posts to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestGoogleEmail | Ingests emails from Google Email account into Graphlit knowledge base. Accepts an optional read limit for the number of emails to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestLinearIssues | Ingests issues from Linear project into Graphlit knowledge base. Accepts Linear project name and an optional read limit for the number of issues to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestGitHubIssues | Ingests issues from GitHub repository into Graphlit knowledge base. Accepts GitHub repository owner and repository name and an optional read limit for the number of issues to ingest. For example, for GitHub repository (https://github.com/openai/tiktoken), 'openai' is the repository owner, and 'tiktoken' is the repository name. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestJiraIssues | Ingests issues from Atlassian Jira repository into Graphlit knowledge base. Accepts Atlassian Jira server URL and project name, and an optional read limit for the number of issues to ingest. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_webCrawl | Crawls web pages from web site into Graphlit knowledge base. Accepts a URL and an optional read limit for the number of pages to crawl. Uses sitemap.xml to discover pages to be crawled from website. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_webMap | Enumerates the web pages at or beneath the provided URL using web sitemap. Does not ingest web pages into Graphlit knowledge base. Accepts web page URL as string. Returns list of mapped URIs from web site. |
Graphlit MCP Server_webSearch | Performs web search based on search query. Format the search query as what would be entered into a Google search. Prefer calling this tool over using 'curl' directly for any web search. Does not ingest pages into Graphlit knowledge base. Accepts search query as string, and optional search service type. Can search for web pages, podcasts, videos, images, news, or shopping. Search service types: Tavily, Exa. Defaults to Tavily. Returns URL, title and relevant Markdown text from resulting web pages. |
Graphlit MCP Server_ingestRSS | Ingests posts from RSS feed into Graphlit knowledge base. For podcast RSS feeds, audio will be downloaded, transcribed and ingested into Graphlit knowledge base. Accepts RSS URL and an optional read limit for the number of posts to read. Executes asynchronously and returns the feed identifier. |
Graphlit MCP Server_ingestText | Ingests text as content into Graphlit knowledge base. Accepts a name for the content object, the text itself, and an optional text type (Plain, Markdown, Html). Defaults to Markdown text type. Can use for storing long-term textual memories or the output from LLM or other tools as content resources, which can be later searched or retrieved. Executes synchronously and returns the content identifier. |
Graphlit MCP Server_ingestFile | Ingests local file into Graphlit knowledge base. Accepts the path to the file in the local filesystem. Executes asynchronously and returns the content identifier. |
Graphlit MCP Server_screenshotPage | Screenshots web page from URL. Executes asynchronously and returns the content identifier. |
Graphlit MCP Server_describeImage | Prompts vision LLM and returns completion. Does not ingest image into Graphlit knowledge base. Accepts image URL as string. Returns Markdown text from LLM completion. |
Graphlit MCP Server_describeContent | Prompts vision LLM and returns description of image content. Accepts content identifier as string, and optional prompt for image description. Returns Markdown text from LLM completion. |
Outlook Calendar MCP_delete_event | Delete a calendar event by its ID |
Outlook Calendar MCP_list_events | List calendar events within a specified date range |
Outlook Calendar MCP_create_event | Create a new calendar event or meeting |
Outlook Calendar MCP_find_free_slots | Find available time slots in the calendar |
Outlook Calendar MCP_get_attendee_status | Check the response status of meeting attendees |
Outlook Calendar MCP_update_event | Update an existing calendar event |
Outlook Calendar MCP_get_calendars | List available calendars |
DuckDuckGo MCP Server_search | Search DuckDuckGo and return formatted results. Args: query: The search query string max_results: Maximum number of results to return (default: 10) ctx: MCP context for logging |
DuckDuckGo MCP Server_fetch_content | Fetch and parse content from a webpage URL. Args: url: The webpage URL to fetch content from ctx: MCP context for logging |
Oura MCP Server_get_today_resilience_data | |
Oura MCP Server_get_sleep_data | |
Oura MCP Server_get_readiness_data | |
Oura MCP Server_get_resilience_data | |
Oura MCP Server_get_today_sleep_data | |
Oura MCP Server_get_today_readiness_data | |
MCP Redmine_redmine_request | Make a request to the Redmine API Args: path: API endpoint path (e.g. '/issues.json') method: HTTP method to use (default: 'get') data: Dictionary for request body (for POST/PUT) params: Dictionary for query parameters Returns: str: YAML string containing response status code, body and error message |
MCP Redmine_redmine_paths_list | Return a list of available API paths from OpenAPI spec Retrieves all endpoint paths defined in the Redmine OpenAPI specification. Remember that you can use the redmine_paths_info tool to get the full specfication for a path. Returns: str: YAML string containing a list of path templates (e.g. '/issues.json') |
MCP Redmine_redmine_paths_info | Get full path information for given path templates Args: path_templates: List of path templates (e.g. ['/issues.json', '/projects.json']) Returns: str: YAML string containing API specifications for the requested paths |
MCP Redmine_redmine_upload | Upload a file to Redmine and get a token for attachment Args: file_path: Fully qualified path to the file to upload description: Optional description for the file Returns: str: YAML string containing response status code, body and error message The body contains the attachment token |
MCP Redmine_redmine_download | Download an attachment from Redmine and save it to a local file Args: attachment_id: The ID of the attachment to download save_path: Fully qualified path where the file should be saved to filename: Optional filename to use for the attachment. If not provided, will be determined from attachment data or URL Returns: str: YAML string containing download status, file path, and any error messages |
MATLAB MCP Server_execute_matlab_code | Execute MATLAB code and return the results |
MATLAB MCP Server_generate_matlab_code | Generate MATLAB code from a natural language description |
MySQL MCP Server_query | SQL |
MySQL MCP Server_test_execute | SQL |
MySQL MCP Server_list_tables | - |
MySQL MCP Server_describe_table | - |
File Finder MCP Server_search_files | Search for files containing a specified fragment in their names |
Linear MCP Server_create_issue | Create a new issue in Linear |
Linear MCP Server_list_issues | List issues with optional filters |
Linear MCP Server_update_issue | Update an existing issue |
Linear MCP Server_list_teams | List all teams in the workspace |
Linear MCP Server_list_projects | List all projects |
Linear MCP Server_search_issues | Search for issues using a text query |
Linear MCP Server_get_issue | Get detailed information about a specific issue |
Frontend Review MCP_reviewEdit | Perform a visual review of a UI edit request. The 'before screenshot' is a screenshot of the page before the edit, and the 'after screenshot' is the screenshot of the page after the edit. You will recieve either a yes or no response, indicating whether the edit visually satisfies the edit request. If no, it will provide a detailed explanation of why the edit does not satisfy the request so you can continue to work on it. |
MCP 3D Printer Server_scale_stl | Scale an STL model uniformly or along specific axes |
MCP 3D Printer Server_rotate_stl | Rotate an STL model around specific axes |
MCP 3D Printer Server_translate_stl | Move an STL model along specific axes |
MCP 3D Printer Server_modify_stl_section | Apply a specific transformation to a selected section of an STL file |
MCP 3D Printer Server_generate_stl_visualization | Generate an SVG visualization of an STL file from multiple angles |
MCP 3D Printer Server_get_printer_status | Get the current status of the 3D printer |
MCP 3D Printer Server_extend_stl_base | Extend the base of an STL file by a specified amount |
MCP 3D Printer Server_slice_stl | Slice an STL file to generate G-code |
MCP 3D Printer Server_confirm_temperatures | Confirm temperature settings in a G-code file |
MCP 3D Printer Server_process_and_print_stl | Process an STL file (extend base), slice it, confirm temperatures, and start printing |
MCP 3D Printer Server_get_stl_info | Get detailed information about an STL file |
HeFeng Weather MCP Server_get-weather | - |
https://github.com/Streen9/react-mcp_read-file | Read the contents of a file |
https://github.com/Streen9/react-mcp_create-react-app | Create a new React application |
https://github.com/Streen9/react-mcp_run-react-app | Run a React application in development mode |
https://github.com/Streen9/react-mcp_run-command | Run a terminal command |
https://github.com/Streen9/react-mcp_get-process-output | Get the output from a running or completed process |
https://github.com/Streen9/react-mcp_stop-process | Stop a running process |
https://github.com/Streen9/react-mcp_list-processes | List all running processes |
https://github.com/Streen9/react-mcp_edit-file | Create or edit a file |
https://github.com/Streen9/react-mcp_install-package | Install a npm package in a project |
Room MCP_create-room-as-host | create a room, and be the host. The user should provide clear direction for the objective of the room. Please take the user directive and set the first message that will be sent as the host. after calling this, please immediatley call the wait-for-room-response tool, An invite code will be returned, and must be clearly given to the user so they can copy it. |
Room MCP_join-with-invite | join a room with an invite code |
Room MCP_wait-for-room-response | wait for a message to arrive in the room, of be notified if the other party left |
Room MCP_send-message | send a message to a room. this call will automatically wait for the response, or inform if the peer has left |
Room MCP_exit-room | exit a room and clean up resources |
Siri Shortcuts MCP Server_list_shortcuts | List all available Siri shortcuts |
Siri Shortcuts MCP Server_open_shortcut | Open a shortcut in the Shortcuts app |
Siri Shortcuts MCP Server_run_shortcut | Run a shortcut with optional input and output parameters |
aws-athena-mcp_run_query | Execute a SQL query using AWS Athena. Returns full results if query completes before timeout, otherwise returns queryExecutionId. |
aws-athena-mcp_get_result | Get results for a completed query. Returns error if query is still running. |
aws-athena-mcp_get_status | Get the current status of a query execution |
Meilisearch MCP Server_list-indexes | List all indexes in the Meilisearch instance |
Meilisearch MCP Server_get-index | Get information about a specific Meilisearch index |
Meilisearch MCP Server_create-index | Create a new Meilisearch index |
Meilisearch MCP Server_update-index | Update a Meilisearch index (currently only supports updating the primary key) |
Meilisearch MCP Server_delete-index | Delete a Meilisearch index |
Meilisearch MCP Server_swap-indexes | Swap two or more indexes in Meilisearch |
Meilisearch MCP Server_get-documents | Get documents from a Meilisearch index |
Meilisearch MCP Server_get-document | Get a document by its ID from a Meilisearch index |
Meilisearch MCP Server_add-documents | Add documents to a Meilisearch index |
Meilisearch MCP Server_update-documents | Update documents in a Meilisearch index |
Meilisearch MCP Server_delete-documents | Delete multiple documents by their IDs from a Meilisearch index |
Meilisearch MCP Server_delete-document | Delete a document by its ID from a Meilisearch index |
Meilisearch MCP Server_delete-all-documents | Delete all documents in a Meilisearch index |
Meilisearch MCP Server_search | Search for documents in a Meilisearch index |
Meilisearch MCP Server_multi-search | Perform multiple searches in one request |
Meilisearch MCP Server_facet-search | Search for facet values matching specific criteria |
Meilisearch MCP Server_get-settings | Get all settings for a Meilisearch index |
Meilisearch MCP Server_update-settings | Update settings for a Meilisearch index |
Meilisearch MCP Server_reset-settings | Reset all settings for a Meilisearch index to their default values |
Meilisearch MCP Server_get-searchable-attributes | Get the searchable attributes setting |
Meilisearch MCP Server_get-displayed-attributes | Get the displayed attributes setting |
Meilisearch MCP Server_get-filterable-attributes | Get the filterable attributes setting |
Meilisearch MCP Server_get-sortable-attributes | Get the sortable attributes setting |
Meilisearch MCP Server_get-ranking-rules | Get the ranking rules setting |
Meilisearch MCP Server_get-stop-words | Get the stop words setting |
Meilisearch MCP Server_get-synonyms | Get the synonyms setting |
Meilisearch MCP Server_get-distinct-attribute | Get the distinct attribute setting |
Meilisearch MCP Server_get-typo-tolerance | Get the typo tolerance setting |
Meilisearch MCP Server_get-faceting | Get the faceting setting |
Meilisearch MCP Server_get-pagination | Get the pagination setting |
Meilisearch MCP Server_update-searchable-attributes | Update the searchable attributes setting |
Meilisearch MCP Server_update-displayed-attributes | Update the displayed attributes setting |
Meilisearch MCP Server_update-filterable-attributes | Update the filterable attributes setting |
Meilisearch MCP Server_update-sortable-attributes | Update the sortable attributes setting |
Meilisearch MCP Server_update-ranking-rules | Update the ranking rules setting |
Meilisearch MCP Server_update-stop-words | Update the stop words setting |
Meilisearch MCP Server_update-synonyms | Update the synonyms setting |
Meilisearch MCP Server_update-distinct-attribute | Update the distinct attribute setting |
Meilisearch MCP Server_update-typo-tolerance | Update the typo tolerance setting |
Meilisearch MCP Server_update-faceting | Update the faceting setting |
Meilisearch MCP Server_update-pagination | Update the pagination setting |
Meilisearch MCP Server_reset-searchable-attributes | Reset the searchable attributes setting to its default value |
Meilisearch MCP Server_reset-displayed-attributes | Reset the displayed attributes setting to its default value |
Meilisearch MCP Server_reset-filterable-attributes | Reset the filterable attributes setting to its default value |
Meilisearch MCP Server_reset-sortable-attributes | Reset the sortable attributes setting to its default value |
Meilisearch MCP Server_reset-distinct-attribute | Reset the distinct attribute setting to its default value |
Meilisearch MCP Server_reset-typo-tolerance | Reset the typo tolerance setting to its default value |
Meilisearch MCP Server_reset-faceting | Reset the faceting setting to its default value |
Meilisearch MCP Server_reset-ranking-rules | Reset the ranking rules setting to its default value |
Meilisearch MCP Server_reset-stop-words | Reset the stop words setting to its default value |
Meilisearch MCP Server_reset-synonyms | Reset the synonyms setting to its default value |
Meilisearch MCP Server_reset-pagination | Reset the pagination setting to its default value |
Meilisearch MCP Server_enable-vector-search | Enable the vector search experimental feature in Meilisearch |
Meilisearch MCP Server_get-experimental-features | Get the status of experimental features in Meilisearch |
Meilisearch MCP Server_update-embedders | Configure embedders for vector search |
Meilisearch MCP Server_get-embedders | Get the embedders configuration for an index |
Meilisearch MCP Server_reset-embedders | Reset the embedders configuration for an index |
Meilisearch MCP Server_vector-search | Perform a vector search in a Meilisearch index |
Meilisearch MCP Server_health | Check if the Meilisearch server is healthy |
Meilisearch MCP Server_version | Get the version information of the Meilisearch server |
Meilisearch MCP Server_info | Get the system information of the Meilisearch server |
Meilisearch MCP Server_stats | Get statistics about all indexes or a specific index |
Meilisearch MCP Server_get-tasks | Get information about tasks with optional filtering |
Meilisearch MCP Server_delete-tasks | Delete tasks based on provided filters |
Meilisearch MCP Server_list-tasks | List tasks with optional filtering |
Meilisearch MCP Server_get-task | Get information about a specific task |
Meilisearch MCP Server_cancel-tasks | Cancel tasks based on provided filters |
Meilisearch MCP Server_wait-for-task | Wait for a specific task to complete |
MCP2Lambda_list_lambda_functions | Tool that lists all AWS Lambda functions that you can call as tools. Use this list to understand what these functions are and what they do. This functions can help you in many different ways. |
MCP2Lambda_invoke_lambda_function | Tool that invokes an AWS Lambda function with a JSON payload. Before using this tool, list the functions available to you. |
Email Sending MCP_send-email | Send an email using Resend |
mitmproxy-mcp MCP Server_list_flows | Retrieves detailed HTTP request/response data including headers, content (or structure preview for large JSON), and metadata from specified flows |
mitmproxy-mcp MCP Server_get_flow_details | Lists HTTP requests/responses from a mitmproxy capture session, showing method, URL, and status codes |
mitmproxy-mcp MCP Server_extract_json_fields | Extract specific fields from JSON content in a flow using JSONPath expressions |
mitmproxy-mcp MCP Server_analyze_protection | Analyze flow for bot protection mechanisms and extract challenge details |
Crypto_MCP_aes_encrypt | encrypt text with aes |
Crypto_MCP_aes_decrypt | decrypt text with aes |
Crypto_MCP_md5 | Calculate MD5 hash of a string |
Crypto_MCP_sha1 | Calculate SHA-1 hash of a string |
Crypto_MCP_sha256 | Calculate SHA-256 hash of a string |
Crypto_MCP_sha384 | Calculate SHA-384 hash of a string |
Crypto_MCP_sha512 | Calculate SHA-512 hash of a string |
Crypto_MCP_sha224 | Calculate SHA-224 hash of a string |
Crypto_MCP_des_encrypt | encrypt text with des |
Crypto_MCP_des_decrypt | decrypt text with des |
Figma MCP Server_analyze_figma_file | Analyze a Figma file structure to understand its nodes and hierarchy |
Firebase MCP Server_firestore_add_document | Add a document to a Firestore collection |
Firebase MCP Server_firestore_list_collections | List collections in Firestore. If documentPath is provided, returns subcollections under that document; otherwise returns root collections. |
Firebase MCP Server_firestore_list_documents | List documents from a Firestore collection with optional filtering |
Firebase MCP Server_firestore_get_document | Get a document from a Firestore collection |
Firebase MCP Server_firestore_update_document | Update a document in a Firestore collection |
Firebase MCP Server_firestore_delete_document | Delete a document from a Firestore collection |
Firebase MCP Server_auth_get_user | Get a user by ID or email from Firebase Authentication |
Firebase MCP Server_storage_list_files | List files in a given path in Firebase Storage |
Firebase MCP Server_storage_get_file_info | Get file information including metadata and download URL |
MCP Server Template for Cursor IDE_mcp_fetch | Fetches a website and returns its content |
MCP Server Template for Cursor IDE_mood | Ask the server about its mood - it's always happy! |
MCP Server Template for Cursor IDE_generate_image | Generate an image using DALL-E 3 |
MCP Server Template for Cursor IDE_figma_design | Get Figma design data including structure and images |
mcp-data-extractor_extract_data | Extract data content (e.g. i18n translations) from source code to a JSON file. IMPORTANT: When encountering files with data such as i18n content embedded in code, use this tool directly instead of reading the file content first. This tool will programmatically extract all translations into a structured JSON file, preserving nested objects, arrays, template variables, and formatting. This helps keep translations as configuration and prevents filling up the AI context window with translation content. By default, the source file will be replaced with "MIGRATED TO <target absolute path>" and a warning message after successful extraction, making it easy to track where the data was moved to. This behaviour can be disabled by setting the DISABLE_SOURCE_REPLACEMENT environment variable to 'true'. The warning message can be customized by setting the WARNING_MESSAGE environment variable. |
mcp-data-extractor_extract_svg | Extract SVG components from React/TypeScript/JavaScript files into individual .svg files. This tool will preserve the SVG structure and attributes while removing React-specific code. By default, the source file will be replaced with "MIGRATED TO <target absolute path>" and a warning message after successful extraction, making it easy to track where the SVGs were moved to. This behaviour can be disabled by setting the DISABLE_SOURCE_REPLACEMENT environment variable to 'true'. The warning message can be customized by setting the WARNING_MESSAGE environment variable. |
airflow-mcp-server_get_version | get_version |
airflow-mcp-server_get_connections | get_connections |
airflow-mcp-server_post_connection | post_connection |
airflow-mcp-server_get_connection | get_connection |
airflow-mcp-server_patch_connection | patch_connection |
airflow-mcp-server_delete_connection | delete_connection |
airflow-mcp-server_test_connection | test_connection |
airflow-mcp-server_get_dags | get_dags |
airflow-mcp-server_delete_dag | delete_dag |
airflow-mcp-server_patch_dags | patch_dags |
airflow-mcp-server_get_dag | get_dag |
airflow-mcp-server_patch_dag | patch_dag |
airflow-mcp-server_post_clear_task_instances | post_clear_task_instances |
airflow-mcp-server_set_task_instance_note | set_task_instance_note |
airflow-mcp-server_set_mapped_task_instance_note | set_mapped_task_instance_note |
airflow-mcp-server_get_task_instance_dependencies | get_task_instance_dependencies |
airflow-mcp-server_get_mapped_task_instance_dependencies | get_mapped_task_instance_dependencies |
airflow-mcp-server_post_set_task_instances_state | post_set_task_instances_state |
airflow-mcp-server_get_dag_runs | get_dag_runs |
airflow-mcp-server_post_dag_run | post_dag_run |
airflow-mcp-server_get_dag_runs_batch | get_dag_runs_batch |
airflow-mcp-server_get_dag_run | get_dag_run |
airflow-mcp-server_delete_dag_run | delete_dag_run |
airflow-mcp-server_update_dag_run_state | update_dag_run_state |
airflow-mcp-server_clear_dag_run | clear_dag_run |
airflow-mcp-server_get_upstream_dataset_events | get_upstream_dataset_events |
airflow-mcp-server_set_dag_run_note | set_dag_run_note |
airflow-mcp-server_get_dag_dataset_queued_event | get_dag_dataset_queued_event |
airflow-mcp-server_delete_dag_dataset_queued_event | delete_dag_dataset_queued_event |
airflow-mcp-server_get_dag_dataset_queued_events | get_dag_dataset_queued_events |
airflow-mcp-server_delete_dag_dataset_queued_events | delete_dag_dataset_queued_events |
airflow-mcp-server_reparse_dag_file | reparse_dag_file |
airflow-mcp-server_get_dataset_queued_events | get_dataset_queued_events |
airflow-mcp-server_delete_dataset_queued_events | delete_dataset_queued_events |
airflow-mcp-server_get_event_logs | get_event_logs |
airflow-mcp-server_get_event_log | get_event_log |
airflow-mcp-server_get_import_errors | get_import_errors |
airflow-mcp-server_get_import_error | get_import_error |
airflow-mcp-server_get_pools | get_pools |
airflow-mcp-server_post_pool | post_pool |
airflow-mcp-server_get_pool | get_pool |
airflow-mcp-server_patch_pool | patch_pool |
airflow-mcp-server_delete_pool | delete_pool |
airflow-mcp-server_get_providers | get_providers |
airflow-mcp-server_get_task_instances | get_task_instances |
airflow-mcp-server_get_task_instance | get_task_instance |
airflow-mcp-server_patch_task_instance | patch_task_instance |
airflow-mcp-server_get_mapped_task_instance | get_mapped_task_instance |
airflow-mcp-server_patch_mapped_task_instance | patch_mapped_task_instance |
airflow-mcp-server_get_mapped_task_instances | get_mapped_task_instances |
airflow-mcp-server_get_task_instances_batch | get_task_instances_batch |
airflow-mcp-server_get_task_instance_try_details | get_task_instance_try_details |
airflow-mcp-server_get_task_instance_tries | get_task_instance_tries |
airflow-mcp-server_get_mapped_task_instance_tries | get_mapped_task_instance_tries |
airflow-mcp-server_get_mapped_task_instance_try_details | get_mapped_task_instance_try_details |
airflow-mcp-server_get_variables | get_variables |
airflow-mcp-server_post_variables | post_variables |
airflow-mcp-server_get_variable | get_variable |
airflow-mcp-server_patch_variable | patch_variable |
airflow-mcp-server_delete_variable | delete_variable |
airflow-mcp-server_get_xcom_entries | get_xcom_entries |
airflow-mcp-server_get_xcom_entry | get_xcom_entry |
airflow-mcp-server_get_extra_links | get_extra_links |
airflow-mcp-server_get_log | get_log |
airflow-mcp-server_get_dag_details | get_dag_details |
airflow-mcp-server_get_tasks | get_tasks |
airflow-mcp-server_get_task | get_task |
airflow-mcp-server_get_dag_stats | get_dag_stats |
airflow-mcp-server_get_dag_source | get_dag_source |
airflow-mcp-server_get_dag_warnings | get_dag_warnings |
airflow-mcp-server_get_datasets | get_datasets |
airflow-mcp-server_get_dataset | get_dataset |
airflow-mcp-server_get_dataset_events | get_dataset_events |
airflow-mcp-server_create_dataset_event | create_dataset_event |
airflow-mcp-server_get_config | get_config |
airflow-mcp-server_get_value | get_value |
airflow-mcp-server_get_health | get_health |
airflow-mcp-server_get_plugins | get_plugins |
airflow-mcp-server_get_roles | get_roles |
airflow-mcp-server_post_role | post_role |
airflow-mcp-server_get_role | get_role |
airflow-mcp-server_patch_role | patch_role |
airflow-mcp-server_delete_role | delete_role |
airflow-mcp-server_get_permissions | get_permissions |
airflow-mcp-server_get_users | get_users |
airflow-mcp-server_post_user | post_user |
airflow-mcp-server_get_user | get_user |
airflow-mcp-server_patch_user | patch_user |
airflow-mcp-server_delete_user | delete_user |
MCP Tavily_search | Perform a basic web search. Returns search results including title, content and URL. |
MCP Tavily_searchContext | Perform a context-aware web search. Optimized for retrieving contextually relevant results. |
MCP Tavily_searchQNA | Perform a question-answering search. Best suited for direct questions that need specific answers. |
MCP Tavily_extract | Extract and process content from a list of URLs. Can handle up to 20 URLs at once. |
Terraform Registry MCP Server_providerLookup | Lookup a Terraform provider by name and optionally version. |
Terraform Registry MCP Server_resourceUsage | Get an example usage of a Terraform resource and related resources. |
Terraform Registry MCP Server_moduleRecommendations | Search for and recommend Terraform modules for a given query. |
Terraform Registry MCP Server_dataSourceLookup | List all available data sources for a provider and their basic details. |
Terraform Registry MCP Server_resourceArgumentDetails | Fetches details about a specific resource type's arguments, including name, type, description, and requirements. |
Terraform Registry MCP Server_moduleDetails | Retrieves detailed metadata for a Terraform module including versions, inputs, outputs, and dependencies. |
Quickchart-MCP-Server_generate_chart | Generate a chart using QuickChart |
Quickchart-MCP-Server_download_chart | Download a chart image to a local file |
Harvest Natural Language Time Entry MCP Server_list_tasks | List available tasks for a project |
Harvest Natural Language Time Entry MCP Server_log_time | Log time entry using natural language |
Harvest Natural Language Time Entry MCP Server_list_projects | List available Harvest projects |
Harvest Natural Language Time Entry MCP Server_list_entries | List recent time entries |
Harvest Natural Language Time Entry MCP Server_get_time_report | Get time reports using natural language |
Redmine MCP Server for Cline_create_issue | Create a new Redmine issue |
Dart MCP Server_create_folder | Create a new folder in a space |
Dart MCP Server_get_dartboards | Get available dartboards |
Dart MCP Server_get_folders | Get available folders |
Dart MCP Server_get_default_status | Get the default status DUIDs |
Dart MCP Server_get_default_space | Get the default space DUID |
Dart MCP Server_create_task | Create a new Dart task |
Dart MCP Server_update_task | Update an existing task |
Dart MCP Server_create_doc | Create a new document or report |
Dart MCP Server_create_space | Create a new space |
Dart MCP Server_delete_space | Delete a space and all its contents |
Crypto Price & Market Analysis MCP Server_get-crypto-price | Get current price and 24h stats for a cryptocurrency |
Crypto Price & Market Analysis MCP Server_get-market-analysis | Get detailed market analysis including top exchanges and volume distribution |
Crypto Price & Market Analysis MCP Server_get-historical-analysis | Get historical price analysis with customizable timeframe |
SendGrid MCP Server_list_templates | List all email templates in your SendGrid account |
SendGrid MCP Server_create_contact_list | Create a new contact list in SendGrid |
SendGrid MCP Server_validate_email | Validate an email address using SendGrid |
SendGrid MCP Server_get_stats | Get SendGrid email statistics |
SendGrid MCP Server_delete_contacts | Delete contacts from your SendGrid account |
SendGrid MCP Server_list_contacts | List all contacts in your SendGrid account |
SendGrid MCP Server_send_email | Send an email using SendGrid |
SendGrid MCP Server_add_contact | Add a contact to your SendGrid marketing contacts |
SendGrid MCP Server_add_contacts_to_list | Add contacts to an existing SendGrid list |
SendGrid MCP Server_create_template | Create a new email template in SendGrid |
SendGrid MCP Server_get_template | Retrieve a SendGrid template by ID |
SendGrid MCP Server_delete_template | Delete a dynamic template from SendGrid |
SendGrid MCP Server_delete_list | Delete a contact list from SendGrid |
SendGrid MCP Server_list_contact_lists | List all contact lists in your SendGrid account |
SendGrid MCP Server_get_contacts_by_list | Get all contacts in a SendGrid list |
SendGrid MCP Server_list_verified_senders | List all verified sender identities in your SendGrid account |
SendGrid MCP Server_list_suppression_groups | List all unsubscribe groups in your SendGrid account |
SendGrid MCP Server_send_to_list | Send an email to a contact list using SendGrid Single Sends |
SendGrid MCP Server_get_single_send | Get details of a specific single send |
SendGrid MCP Server_list_single_sends | List all single sends in your SendGrid account |
SendGrid MCP Server_remove_contacts_from_list | Remove contacts from a SendGrid list without deleting them |
Azure MCP Server_run-azure-code | Run Azure code |
Azure MCP Server_list-tenants | List all available Azure tenants |
Azure MCP Server_select-tenant | Select Azure tenant and subscription |
PyGithub MCP Server_create_issue | Create a new issue in a GitHub repository. |
PyGithub MCP Server_list_issues | List issues from a GitHub repository. |
PyGithub MCP Server_get_issue | Get details about a specific issue. |
PyGithub MCP Server_update_issue | Update an existing issue. |
PyGithub MCP Server_add_issue_comment | Add a comment to an issue. |
PyGithub MCP Server_list_issue_comments | List comments on an issue. |
PyGithub MCP Server_update_issue_comment | Update an issue comment. |
PyGithub MCP Server_push_files | Push multiple files to a GitHub repository in a single commit. |
PyGithub MCP Server_delete_issue_comment | Delete an issue comment. |
PyGithub MCP Server_add_issue_labels | Add labels to an issue. |
PyGithub MCP Server_remove_issue_label | Remove a label from an issue. |
PyGithub MCP Server_get_repository | Get details about a GitHub repository. |
PyGithub MCP Server_create_repository | Create a new GitHub repository. |
PyGithub MCP Server_fork_repository | Fork an existing GitHub repository. |
PyGithub MCP Server_search_repositories | Search for GitHub repositories. |
PyGithub MCP Server_get_file_contents | Get contents of a file in a GitHub repository. |
PyGithub MCP Server_create_or_update_file | Create or update a file in a GitHub repository. |
PyGithub MCP Server_create_branch | Create a new branch in a GitHub repository. |
PyGithub MCP Server_list_commits | List commits in a GitHub repository. |
mcp-otc_check-balance | Check the ETH balance of an Ethereum address |
mcp-otc_get-transactions | Get recent transactions for an Ethereum address |
mcp-otc_get-token-transfers | Get ERC20 token transfers for an Ethereum address |
mcp-otc_get-contract-abi | Get the ABI for a smart contract |
mcp-otc_get-gas-prices | Get current gas prices in Gwei |
mcp-otc_get-ens-name | Get the ENS name for an Ethereum address |
Super Secret MCP Server_getSecretPassphrase | Whats the password? |
SingleStore MCP Server_query_table | Execute a query on a table |
SingleStore MCP Server_generate_er_diagram | Generate a Mermaid ER diagram of the database schema |
SingleStore MCP Server_list_tables | List all tables in the database |
SingleStore MCP Server_describe_table | Get detailed information about a table |
SingleStore MCP Server_run_read_query | Execute a read-only (SELECT) query on the database |
SingleStore MCP Server_create_table | Create a new table in the database with specified columns and constraints |
SingleStore MCP Server_generate_synthetic_data | Generate and insert synthetic data into an existing table |
SingleStore MCP Server_optimize_sql | Analyze a SQL query using PROFILE and provide optimization recommendations |
Jenkins MCP_list_jobs | List all Jenkins jobs |
Jenkins MCP_trigger_build | Trigger a Jenkins build |
Jenkins MCP_get_build_status | Get build status |
Netlify MCP Server_deploy-site | Deploy a site to Netlify |
Netlify MCP Server_list-sites | List all Netlify sites |
Netlify MCP Server_set-env-vars | Set environment variables for a site |
Netlify MCP Server_get-deploy-status | Get deployment status for a site |
Netlify MCP Server_add-dns-record | Add a DNS record to a site |
Netlify MCP Server_deploy-function | Deploy a serverless function |
Netlify MCP Server_manage-form | Manage form submissions |
Netlify MCP Server_manage-plugin | Manage site plugins |
Netlify MCP Server_manage-hook | Manage webhook notifications |
PayPal MCP_create_payment_token | Create a payment token |
PayPal MCP_create_payment | Create a payment |
PayPal MCP_create_payout | Create a batch payout |
PayPal MCP_create_referenced_payout | Create a referenced payout |
PayPal MCP_create_order | Create a new order in PayPal |
PayPal MCP_create_partner_referral | Create a partner referral |
PayPal MCP_create_web_profile | Create a web experience profile |
PayPal MCP_create_product | Create a new product in PayPal |
PayPal MCP_list_products | List all products |
PayPal MCP_get_dispute | Get details of a dispute |
PayPal MCP_get_userinfo | Get user info from identity token |
PayPal MCP_create_invoice | Create a new invoice |
WolframAlpha LLM MCP Server_ask_llm | Ask WolframAlpha a query and get LLM-optimized structured response with multiple formats |
WolframAlpha LLM MCP Server_get_simple_answer | Get a simplified, LLM-friendly answer focusing on the most relevant information |
WolframAlpha LLM MCP Server_validate_key | Validate the WolframAlpha LLM API key |
serper-search-scrape-mcp-server_google_search | Tool to perform web searches via Serper API and retrieve rich results. It is able to retrieve organic search results, people also ask, related searches, and knowledge graph. |
serper-search-scrape-mcp-server_scrape | Tool to scrape a webpage and retrieve the text and, optionally, the markdown content. It will retrieve also the JSON-LD metadata and the head metadata. |
MCP Security Audit Server_audit_nodejs_dependencies | Audit specific dependencies for vulnerabilities |
OpenAI MCP Server_ask-openai | Ask my assistant models a direct question |
MCP Flux Studio_generate | Generate an image from a text prompt |
MCP Flux Studio_img2img | Generate an image using another image as reference |
MCP Flux Studio_inpaint | Inpaint an image using a mask |
MCP Flux Studio_control | Generate an image using structural control |
MCP OpenFEC Server_get_candidate | Get detailed information about a candidate |
MCP OpenFEC Server_get_candidate_financials | Get financial data for a candidate |
MCP OpenFEC Server_search_candidates | Search for candidates by name or other criteria |
MCP OpenFEC Server_get_committee | Get detailed information about a committee |
MCP OpenFEC Server_get_candidate_contributions | Get individual contributions for a candidate |
MCP OpenFEC Server_get_filings | Retrieve official FEC filings with filters |
MCP OpenFEC Server_get_independent_expenditures | Get independent expenditures supporting or opposing candidates |
MCP OpenFEC Server_get_electioneering | Get electioneering communications |
MCP OpenFEC Server_get_party_coordinated_expenditures | Get party coordinated expenditures |
MCP OpenFEC Server_get_communication_costs | Get corporate/union communication costs |
MCP OpenFEC Server_get_audit_cases | Get FEC audit cases and findings |
MCP OpenFEC Server_get_bulk_downloads | Get links to bulk data downloads |
BigGo MCP Server_product_search | Product Search |
BigGo MCP Server_price_history_graph | Link That Visualizes Product Price History |
BigGo MCP Server_price_history_with_history_id | Product Price History With History ID |
BigGo MCP Server_price_history_with_url | Product Price History With URL |
BigGo MCP Server_spec_indexes | Elasticsearch Indexes for Product Specification. |
BigGo MCP Server_spec_mapping | Elasticsearch Mapping For Product Specification. |
BigGo MCP Server_get_current_region | |
BigGo MCP Server_spec_search | Product Specification Search. |
MCP Server for OpenMetadata_list_tables | List tables from OpenMetadata |
MCP Server for OpenMetadata_get_table | Get details of a specific table by ID |
MCP Server for OpenMetadata_get_table_by_name | Get details of a specific table by fully qualified name |
MCP Server for OpenMetadata_create_table | Create a new table |
MCP Server for OpenMetadata_update_table | Update an existing table |
MCP Server for OpenMetadata_delete_table | Delete a table |
Apple MCP Server_contacts | Search and retrieve contacts from Apple Contacts app |
Apple MCP Server_notes | Search and retrieve notes from Apple Notes app |
Apple MCP Server_messages | Interact with Apple Messages app - send, read, schedule messages and check unread messages |
Apple MCP Server_mail | Interact with Apple Mail app - read unread emails, search emails, and send emails |
Apple MCP Server_reminders | Search, create, and open reminders in Apple Reminders app |
Apple MCP Server_webSearch | Search the web using DuckDuckGo and retrieve content from search results |
Florence-2 MCP Server_ocr | Process an image file or URL using OCR to extract text. |
Florence-2 MCP Server_caption | Processes an image file and generates captions for the image. |
mcp-timeplus_list_databases | - |
mcp-timeplus_list_tables | - |
mcp-timeplus_run_sql | - |
mcp-timeplus_list_kafka_topics | - |
mcp-timeplus_explore_kafka_topic | - |
mcp-timeplus_create_kafka_stream | - |
Webflow MCP Server_get_site | Retrieve detailed information about a specific Webflow site by ID, including workspace, creation date, display name, and publishing details |
Webflow MCP Server_get_sites | Retrieve a list of all Webflow sites accessible to the authenticated user |
Square MCP Server_payments | Manage payment operations using Square API |
Square MCP Server_terminal | Manage Square Terminal operations |
Square MCP Server_orders | Manage orders and checkout operations |
Square MCP Server_catalog | Manage catalog operations |
Square MCP Server_inventory | Manage inventory operations |
Square MCP Server_subscriptions | Manage subscription operations |
Square MCP Server_invoices | Manage invoice operations |
Square MCP Server_team | Manage team operations |
Square MCP Server_customers | Manage customer operations |
Square MCP Server_loyalty | Manage loyalty operations |
Square MCP Server_bookings | Manage booking operations |
Square MCP Server_business | Manage business operations |
EverArt Forge MCP Server_generate_image | Generate images using EverArt Models, optimized for web development. Supports web project paths, responsive formats, and inline preview. Available models:
|
EverArt Forge MCP Server_list_images | List all stored images |
EverArt Forge MCP Server_view_image | Open a stored image in the default image viewer |
Serper Search MCP Server_serper-google-search | Perform a Google search using the SERPER API. Returns rich search results including knowledge graph, organic results, related questions, and more. |
n8n MCP Server_init-n8n | Initialize connection to n8n instance. Use this tool whenever an n8n URL and API key are shared to establish the connection. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_list-workflows | List all workflows from n8n. Use after init-n8n to see available workflows. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_get-workflow | Retrieve a workflow by ID. Use after list-workflows to get detailed information about a specific workflow. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_create-workflow | Create a new workflow in n8n. Use to set up a new workflow with optional nodes and connections. IMPORTANT: 1) Arguments must be provided as compact, single-line JSON without whitespace or newlines. 2) Must provide full workflow structure including nodes and connections arrays, even if empty. The 'active' property should not be included as it is read-only. |
n8n MCP Server_update-workflow | Update an existing workflow in n8n. Use after get-workflow to modify a workflow's properties, nodes, or connections. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_delete-workflow | Delete a workflow by ID. This action cannot be undone. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_activate-workflow | Activate a workflow by ID. This will enable the workflow to run. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_deactivate-workflow | Deactivate a workflow by ID. This will prevent the workflow from running. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_list-projects | List all projects from n8n. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_create-project | Create a new project in n8n. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_delete-project | Delete a project by ID. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_update-project | Update a project's name. NOTE: Requires n8n Enterprise license with project management features enabled. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_list-users | Retrieve all users from your instance. Only available for the instance owner. |
n8n MCP Server_create-users | Create one or more users in your instance. |
n8n MCP Server_get-user | Get user by ID or email address. |
n8n MCP Server_delete-user | Delete a user from your instance. |
n8n MCP Server_list-variables | List all variables from n8n. NOTE: Requires n8n Enterprise license with variable management features enabled. Use after init-n8n to see available variables. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_create-variable | Create a new variable in n8n. NOTE: Requires n8n Enterprise license with variable management features enabled. Variables can be used across workflows to store and share data. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_delete-variable | Delete a variable by ID. NOTE: Requires n8n Enterprise license with variable management features enabled. Use after list-variables to get the ID of the variable to delete. This action cannot be undone. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines. |
n8n MCP Server_create-credential | Create a credential that can be used by nodes of the specified type. The credential type name can be found in the n8n UI when creating credentials (e.g., 'cloudflareApi', 'githubApi', 'slackOAuth2Api'). Use get-credential-schema first to see what fields are required for the credential type you want to create. |
n8n MCP Server_delete-credential | Delete a credential by ID. You must be the owner of the credentials. |
n8n MCP Server_get-credential-schema | Show credential data schema for a specific credential type. The credential type name can be found in the n8n UI when creating credentials (e.g., 'cloudflareApi', 'githubApi', 'slackOAuth2Api'). This will show you what fields are required for creating credentials of this type. |
n8n MCP Server_list-executions | Retrieve all executions from your instance with optional filtering. |
n8n MCP Server_get-execution | Retrieve a specific execution by ID. |
n8n MCP Server_delete-execution | Delete a specific execution by ID. |
n8n MCP Server_create-tag | Create a new tag in your instance. |
n8n MCP Server_list-tags | Retrieve all tags from your instance. |
n8n MCP Server_get-tag | Retrieve a specific tag by ID. |
n8n MCP Server_update-tag | Update a tag's name. |
n8n MCP Server_delete-tag | Delete a tag by ID. |
n8n MCP Server_get-workflow-tags | Get tags associated with a workflow. |
n8n MCP Server_update-workflow-tags | Update tags associated with a workflow. |
n8n MCP Server_generate-audit | Generate a security audit for your n8n instance. |
Software Planning Tool_start_planning | Start a new planning session with a goal |
Software Planning Tool_save_plan | Save the current implementation plan |
Software Planning Tool_add_todo | Add a new todo item to the current plan |
Software Planning Tool_remove_todo | Remove a todo item from the current plan |
Software Planning Tool_get_todos | Get all todos in the current plan |
Software Planning Tool_update_todo_status | Update the completion status of a todo item |
mcp-clickup_clickup_authenticate | Authenticate with ClickUp API using an API token and workspace ID |
mcp-clickup_clickup_get_task_by_custom_id | Get a task by its custom ID |
mcp-clickup_clickup_get_tasks | Get multiple tasks by their IDs |
mcp-clickup_clickup_get_task | Get a task by its ID |
MCP YNAB Server_create_transaction | Create a new transaction in YNAB. |
MCP YNAB Server_get_account_balance | Get the current balance of a YNAB account (in dollars). |
MCP YNAB Server_get_budgets | List all YNAB budgets in Markdown format. |
MCP YNAB Server_get_accounts | List all YNAB accounts in a specific budget in Markdown format. |
MCP YNAB Server_get_categories | List all transaction categories for a given YNAB budget in Markdown format. |
MCP YNAB Server__find_transaction_by_id | Find a transaction by its ID and ID type. |
MCP YNAB Server_get_transactions | Get recent transactions for a specific account in a specific budget. |
MCP YNAB Server_get_transactions_needing_attention | List transactions that need attention based on specified filter type in a YNAB budget. |
MCP YNAB Server_set_preferred_budget_id | Set the preferred YNAB budget ID. |
MCP YNAB Server_cache_categories | Cache all categories for a given YNAB budget ID. |
Buienradar MCP Server_get_precipitation_for | Fetches precipitation data for the next 2 hours from Buienradar. |
Perplexity AI MCP Server_chat_perplexity | Maintains ongoing conversations with Perplexity AI. Creates new chats or continues existing ones with full history context. |
Perplexity AI MCP Server_search | Perform a general search query to get comprehensive information on any topic |
Perplexity AI MCP Server_get_documentation | Get documentation and usage examples for a specific technology, library, or API |
Perplexity AI MCP Server_find_apis | Find and evaluate APIs that could be integrated into a project |
Perplexity AI MCP Server_check_deprecated_code | Check if code or dependencies might be using deprecated features |
Memory Bank MCP Server_memory_bank_read | Read a memory bank file for a specific project |
Memory Bank MCP Server_memory_bank_write | Create a new memory bank file for a specific project |
Memory Bank MCP Server_memory_bank_update | Update an existing memory bank file for a specific project |
Memory Bank MCP Server_list_projects | List all projects in the memory bank |
Memory Bank MCP Server_list_project_files | List all files within a specific project |
nREPL MCP Server_connect | Connect to an nREPL server. Example: (connect { "localhost" 1234}) |
nREPL MCP Server_eval_form | Evaluate Clojure code in a specific namespace or the current one. Examples:
|
nREPL MCP Server_get_ns_vars | Get all public vars (functions, values) in a namespace with their metadata and current values. Example:
|
Coolify MCP Server_list-resources | Retrieve a comprehensive list of all resources managed by Coolify. This includes applications, services, databases, and deployments. |
Coolify MCP Server_list-applications | Fetch a list of all applications currently managed by Coolify. This provides an overview of all deployed applications. |
Coolify MCP Server_get-application | Retrieve detailed information about a specific application using its UUID. This includes the application's status, configuration, and deployment details. |
Coolify MCP Server_start-application | Start a specific application using its UUID. This initiates the application and makes it available for use. |
Coolify MCP Server_stop-application | Stop a specific application using its UUID. This halts the application and makes it unavailable. |
Coolify MCP Server_restart-application | Restart a specific application using its UUID. This stops and then starts the application, applying any configuration changes. |
Coolify MCP Server_list-services | Retrieve a list of all services managed by Coolify. This includes external services and microservices. |
Coolify MCP Server_list-databases | Fetch a list of all databases managed by Coolify. This provides an overview of all database instances. |
Coolify MCP Server_list-deployments | Retrieve a list of all running deployments in Coolify. This includes details about the deployment status and history. |
Coolify MCP Server_deploy | Deploy an application or service using a tag or UUID. This allows you to deploy new versions or updates to your applications. |
Coolify MCP Server_update-application | Update the settings of a specific application, such as health check configurations. This allows you to modify the application's behavior and monitoring settings. |
Supabase MCP Server_get_schemas | List all database schemas with their sizes and table counts. |
Supabase MCP Server_get_table_schema | Get detailed table structure including columns, keys, and relationships. Returns comprehensive information about a specific table's structure:
Parameters:
SAFETY: This is a low-risk read operation that can be executed in SAFE mode. |
Supabase MCP Server_execute_postgresql | Execute PostgreSQL statements against your Supabase database. IMPORTANT: All SQL statements must end with a semicolon (;). OPERATION TYPES AND REQUIREMENTS:
MIGRATION HANDLING: All queries that modify the database will be automatically version controlled by the server. You can provide optional migration name, if you want to name the migration.
SAFETY SYSTEM: Operations are categorized by risk level:
TRANSACTION HANDLING:
MULTIPLE STATEMENTS:
CONFIRMATION FLOW FOR HIGH-RISK OPERATIONS:
IMPORTANT GUIDELINES:
WHEN TO USE OTHER TOOLS INSTEAD:
Note: This tool operates on the PostgreSQL database only. API operations use separate safety controls. |
Supabase MCP Server_get_tables | List all tables, foreign tables, and views in a schema with their sizes, row counts, and metadata. Provides detailed information about all database objects in the specified schema:
Parameters:
SAFETY: This is a low-risk read operation that can be executed in SAFE mode. |
Supabase MCP Server_retrieve_migrations | Retrieve a list of all migrations a user has from Supabase. Returns a list of migrations with the following information:
Parameters:
SAFETY: This is a low-risk read operation that can be executed in SAFE mode. |
Supabase MCP Server_send_management_api_request | Execute a Supabase Management API request. This tool allows you to make direct calls to the Supabase Management API, which provides programmatic access to manage your Supabase project settings, resources, and configurations. REQUEST FORMATTING:
PARAMETERS:
PATH PARAMETERS HANDLING:
EXAMPLES:
SAFETY SYSTEM: API operations are categorized by risk level:
SAFETY CONSIDERATIONS:
For a complete list of available API endpoints and their parameters, use the get_management_api_spec tool. For details on safety rules, use the get_management_api_safety_rules tool. |
Supabase MCP Server_get_management_api_spec | Get the complete Supabase Management API specification. Returns the full OpenAPI specification for the Supabase Management API, including:
This tool can be used in four different ways:
Parameters:
Available domains:
This specification is useful for understanding:
SAFETY: This is a low-risk read operation that can be executed in SAFE mode. |
Supabase MCP Server_get_auth_admin_methods_spec | Get Python SDK methods specification for Auth Admin. Returns a comprehensive dictionary of all Auth Admin methods available in the Supabase Python SDK, including:
This tool is useful for exploring the capabilities of the Auth Admin SDK and understanding how to properly format parameters for the call_auth_admin_method tool. No parameters required. |
Supabase MCP Server_call_auth_admin_method | Call an Auth Admin method from Supabase Python SDK. This tool provides a safe, validated interface to the Supabase Auth Admin SDK, allowing you to:
IMPORTANT NOTES:
AVAILABLE METHODS:
EXAMPLES:
For complete documentation of all methods and their parameters, use the get_auth_admin_methods_spec tool. |
Supabase MCP Server_live_dangerously | Toggle unsafe mode for either Management API or Database operations. WHAT THIS TOOL DOES: This tool switches between safe (default) and unsafe operation modes for either the Management API or Database operations. SAFETY MODES EXPLAINED:
OPERATION RISK LEVELS: The system categorizes operations by risk level:
WHEN TO USE THIS TOOL:
USAGE GUIDELINES:
Parameters:
Examples:
Note: This tool affects ALL subsequent operations for the specified service until changed again. |
Supabase MCP Server_confirm_destructive_operation | Execute a destructive database or API operation after confirmation. Use this only after reviewing the risks with the user. HOW IT WORKS:
STEPS:
PARAMETERS:
NOTE: Confirmation IDs expire after 5 minutes for security |
Seq MCP Server_get-events | Retrieve and analyze a list of event filtered by parameters. Use this tool when you need to:
|
Shell-MCP_shell_ps | Show process status |
Shell-MCP_shell_free | Show memory usage |
Shell-MCP_shell_uptime | Show system uptime |
Shell-MCP_shell_date | Show system date and time |
Shell-MCP_shell_grep | Search text patterns in files |
Shell-MCP_shell_netstat | Network connection information |
Shell-MCP_shell_lspci | List PCI devices |
Shell-MCP_shell_lsusb | List USB devices |
Shell-MCP_shell_dig | DNS lookup utility |
Shell-MCP_shell_nslookup | Query DNS records |
Shell-MCP_shell_ip | Show / manipulate routing, network devices, interfaces and tunnels |
Shell-MCP_shell_whereis | Locate the binary, source, and manual page files for a command |
Shell-MCP_shell_df | Show disk usage |
Shell-MCP_shell_echo | Display text |
Shell-MCP_shell_ls | List directory contents |
Shell-MCP_shell_cat | Concatenate and display file contents |
Shell-MCP_shell_pwd | Show current working directory |
Shell-MCP_shell_w | Show who is logged on and what they are doing |
Shell-MCP_shell_whois | Query WHOIS domain registration information |
Shell-MCP_shell_find | Search for files in a directory hierarchy |
lunchmoney-mcp_get-budget-summary | Get budget summary for a specific time period |
lunchmoney-mcp_get-recent-transactions | Get recent transactions |
lunchmoney-mcp_search-transactions | Search transactions by keyword |
lunchmoney-mcp_get-category-spending | Get spending in a category |
Modal MCP Toolbox_run_python_code_in_sandbox | print(requests.get('https://icanhazip.com').text)", requirements=["requests"]) |
Modal MCP Toolbox_generate_flux_image | Let's you generate an image using the Flux model. |
MCP Media Processing Server_execute-ffmpeg | Execute any FFmpeg command with custom options |
MCP Media Processing Server_convert-video | Convert video to different format |
MCP Media Processing Server_compress-video | Compress video file |
MCP Media Processing Server_trim-video | Trim video to specified duration |
MCP Media Processing Server_compress-image | Compress PNG image using ImageMagick |
MCP Media Processing Server_convert-image | Convert image to different format |
MCP Media Processing Server_resize-image | Resize image to specified dimensions |
MCP Media Processing Server_rotate-image | Rotate image by specified degrees |
MCP Media Processing Server_add-watermark | Add watermark to image |
MCP Media Processing Server_apply-effect | Apply visual effect to image |
Simple Document Processing MCP Server_document_reader | Read content from non-image document-files at specified paths, supporting various file formats: .pdf, .docx, .txt, .html, .csv |
Simple Document Processing MCP Server_pdf_merger | Merge multiple PDF files into one |
Simple Document Processing MCP Server_pdf_splitter | Split a PDF file into multiple files |
Simple Document Processing MCP Server_docx_to_pdf | Convert DOCX files to PDF format |
Simple Document Processing MCP Server_docx_to_html | Convert DOCX to HTML while preserving formatting |
Simple Document Processing MCP Server_html_cleaner | Clean HTML by removing unnecessary tags and attributes |
Simple Document Processing MCP Server_html_to_text | Convert HTML to plain text while preserving structure |
Simple Document Processing MCP Server_html_to_markdown | Convert HTML to Markdown format |
Simple Document Processing MCP Server_html_extract_resources | Extract all resources (images, videos, links) from HTML |
Simple Document Processing MCP Server_html_formatter | Format and beautify HTML code |
Simple Document Processing MCP Server_text_diff | Compare two text files and show differences |
Simple Document Processing MCP Server_text_splitter | Split text file by specified delimiter or line count |
Simple Document Processing MCP Server_text_formatter | Format text with proper indentation and line spacing |
Simple Document Processing MCP Server_text_encoding_converter | Convert text between different encodings |
Simple Document Processing MCP Server_excel_read | Read Excel file and convert to JSON format while preserving structure |
Simple Document Processing MCP Server_format_convert | Convert between different document formats (Markdown, HTML, XML, JSON) |
KNMI Weather MCP_get_location_weather | Get current weather data for a location |
KNMI Weather MCP_search_location | |
KNMI Weather MCP_get_nearest_station | |
KNMI Weather MCP_what_is_the_weather_like_in | |
kospi-kosdaq_load_all_tickers | Loads all ticker symbols and names for KOSPI and KOSDAQ into memory. |
kospi-kosdaq_get_stock_ohlcv | Retrieves OHLCV (Open/High/Low/Close/Volume) data for a specific stock. |
kospi-kosdaq_get_stock_market_cap | Retrieves market capitalization data for a specific stock. |
kospi-kosdaq_get_stock_fundamental | Retrieves fundamental data (PER/PBR/Dividend Yield) for a specific stock. |
kospi-kosdaq_get_stock_trading_volume | Retrieves trading volume by investor type for a specific stock. |
MCP Server Playground_calculate_sum | Add two numbers together |
MCP Server Playground_httpbin_json | Returns data about slide show |
ChatGPT MCP Server_containers_list | List all Docker containers |
ChatGPT MCP Server_container_create | Create and start a new Docker container |
ChatGPT MCP Server_container_stop | Stop a running container |
ChatGPT MCP Server_container_start | Start a stopped container |
ChatGPT MCP Server_container_remove | Remove a container |
ChatGPT MCP Server_container_logs | Get container logs |
ChatGPT MCP Server_container_exec | Execute a command in a running container |
Fetch MCP Server_fetch | Fetches a URL from the internet and optionally extracts its contents as markdown. Although originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that. |
Knowledge Graph Memory Server_create_entities | Create multiple new entities in the knowledge graph |
Knowledge Graph Memory Server_create_relations | Create multiple new relations between entities in the knowledge graph. Relations should be in active voice |
Knowledge Graph Memory Server_add_observations | Add new observations to existing entities in the knowledge graph |
Knowledge Graph Memory Server_delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
Knowledge Graph Memory Server_delete_observations | Delete specific observations from entities in the knowledge graph |
Knowledge Graph Memory Server_delete_relations | Delete multiple relations from the knowledge graph |
Knowledge Graph Memory Server_read_graph | Read the entire knowledge graph |
Knowledge Graph Memory Server_search_nodes | Search for nodes in the knowledge graph based on a query |
Knowledge Graph Memory Server_open_nodes | Open specific nodes in the knowledge graph by their names |
Knowledge Graph Memory Server_create_lesson | Create a new lesson from an error and its solution |
Knowledge Graph Memory Server_find_similar_errors | Find similar errors and their solutions in the knowledge graph |
Knowledge Graph Memory Server_update_lesson_success | Update the success rate of a lesson after applying its solution |
Knowledge Graph Memory Server_get_lesson_recommendations | Get relevant lessons based on the current context |
Deepseek Thinker MCP Server_get-deepseek-thinker | think with deepseek |
Todoist MCP Server_todoist_create_task | Create one or more tasks in Todoist with full parameter support |
Todoist MCP Server_todoist_get_tasks | Get a list of tasks from Todoist with various filters - handles both single and batch retrieval |
Todoist MCP Server_todoist_update_task | Update one or more tasks in Todoist with full parameter support |
Todoist MCP Server_todoist_delete_task | Delete one or more tasks from Todoist |
Todoist MCP Server_todoist_complete_task | Mark one or more tasks as complete in Todoist |
Todoist MCP Server_todoist_get_projects | Get projects with optional filtering and hierarchy information |
Todoist MCP Server_todoist_create_project | Create one or more projects with support for nested hierarchies |
Todoist MCP Server_todoist_update_project | Update one or more projects in Todoist |
Todoist MCP Server_todoist_get_project_sections | Get sections from one or more projects in Todoist |
Todoist MCP Server_todoist_create_project_section | Create one or more sections in Todoist projects |
Todoist MCP Server_todoist_get_personal_labels | Get all personal labels from Todoist |
Todoist MCP Server_todoist_remove_shared_labels | Remove one or more shared labels from Todoist tasks |
Todoist MCP Server_todoist_create_personal_label | Create one or more personal labels in Todoist |
Todoist MCP Server_todoist_get_personal_label | Get a personal label by ID |
Todoist MCP Server_todoist_update_personal_label | Update one or more existing personal labels in Todoist |
Todoist MCP Server_todoist_delete_personal_label | Delete a personal label from Todoist |
Todoist MCP Server_todoist_get_shared_labels | Get all shared labels from Todoist |
Todoist MCP Server_todoist_rename_shared_labels | Rename one or more shared labels in Todoist |
Todoist MCP Server_todoist_update_task_labels | Update the labels of one or more tasks in Todoist |
MCP Server for Apache Airflow_list_dags | Lists all DAGs in the Airflow instance |
MCP Server for Apache Airflow_get_dag | Get details of a specific DAG |
MCP Server for Apache Airflow_unpause_dag | Unpause a DAG |
MCP Server for Apache Airflow_pause_dag | Pause a DAG |
MCP Server for Apache Airflow_trigger_dag | Trigger a DAG run |
MCP Server for Apache Airflow_get_dag_runs | Get DAG runs for a specific DAG |
MCP Server for Apache Airflow_get_dag_tasks | Get tasks for a specific DAG |
MCP Server for Apache Airflow_get_task_instance | Get details of a specific task instance |
MCP Server for Apache Airflow_list_task_instances | List all task instances for a specific DAG run |
MCP Server for Apache Airflow_get_import_error | Get details of a specific import error |
MCP Server for Apache Airflow_list_import_errors | List all import errors |
MCP Server for Apache Airflow_get_health | Get the health status of the Airflow instance |
MCP Server for Apache Airflow_get_version | Get the version information of the Airflow instance |
Figma MCP Server_add_figma_file | Add a Figma file to your context |
Figma MCP Server_view_node | Get a thumbnail for a specific node in a Figma file |
Figma MCP Server_read_comments | Get all comments on a Figma file |
Figma MCP Server_post_comment | Post a comment on a node in a Figma file |
Figma MCP Server_reply_to_comment | Reply to an existing comment in a Figma file |
Bear MCP Server_open_note | Open a note identified by its title or id and return its content. |
Bear MCP Server_create | Create a new note and return its unique identifier. Empty notes are not allowed. |
Bear MCP Server_tags | Return all the tags currently displayed in Bears sidebar. |
Bear MCP Server_open_tag | Show all the notes which have a selected tag in bear. |
Bear MCP Server_todo | Select the Todo sidebar item. |
Bear MCP Server_today | Select the Today sidebar item. |
Bear MCP Server_search | Show search results in Bear for all notes or for a specific tag. |
Bear MCP Server_grab_url | Create a new note with the content of a web page and return its unique identifier. |
Singapore LTA MCP Server_bus_arrival | Get real-time bus arrival information for a specific bus stop and optionally a specific service number. Returns estimated arrival times, bus locations, and crowding levels. |
Singapore LTA MCP Server_station_crowding | Get real-time MRT/LRT station crowdedness level for a particular train network line. Updates every 10 minutes. |
Singapore LTA MCP Server_train_alerts | Get real-time train service alerts including service disruptions and shuttle services. Updates when there are changes. |
Singapore LTA MCP Server_carpark_availability | Get real-time availability of parking lots for HDB, LTA, and URA carparks. Updates every minute. |
Singapore LTA MCP Server_travel_times | Get estimated travel times on expressway segments. Updates every 5 minutes. |
Singapore LTA MCP Server_traffic_incidents | Get current road incidents including accidents, roadworks, and heavy traffic. Updates every 2 minutes. |
Singapore LTA MCP Server_station_crowd_forecast | Get forecasted MRT/LRT station crowdedness levels in 30-minute intervals. |
SearXNG MCP Server_web_search | Performs a web search using SearXNG, ideal for general queries, news, articles and online content. Supports multiple search categories, languages, time ranges and safe search filtering. Returns relevant results from multiple search engines combined. |
Git MCP Server_init | Initialize a new Git repository |
Git MCP Server_clone | Clone a repository |
Git MCP Server_status | Get repository status |
Git MCP Server_add | Stage files |
Git MCP Server_commit | Create a commit |
Git MCP Server_push | Push commits to remote |
Git MCP Server_pull | Pull changes from remote |
Git MCP Server_branch_list | List all branches |
Git MCP Server_remote_remove | Remove a remote |
Git MCP Server_stash_list | List stashes |
Git MCP Server_branch_create | Create a new branch |
Git MCP Server_branch_delete | Delete a branch |
Git MCP Server_checkout | Switch branches or restore working tree files |
Git MCP Server_tag_list | List tags |
Git MCP Server_tag_create | Create a tag |
Git MCP Server_tag_delete | Delete a tag |
Git MCP Server_remote_list | List remotes |
Git MCP Server_remote_add | Add a remote |
Git MCP Server_stash_save | Save changes to stash |
Git MCP Server_stash_pop | Apply and remove a stash |
Git MCP Server_bulk_action | Execute multiple Git operations in sequence. This is the preferred way to execute multiple operations. |
Portkey MCP Server_list_all_users | List all users in your Portkey organization, including their roles and account details |
Portkey MCP Server_invite_user | Invite a new user to your Portkey organization with specific workspace access and API key permissions |
Portkey MCP Server_get_user_stats | Retrieve detailed analytics data about user activity within a specified time range, including request counts and costs |
Portkey MCP Server_list_workspaces | Retrieve all workspaces in your Portkey organization, including their configurations and metadata |
Portkey MCP Server_get_workspace | Retrieve detailed information about a specific workspace, including its configuration, metadata, and user access details |
Portkey MCP Server_list_configs | Retrieve all configurations in your Portkey organization, including their status and workspace associations |
Portkey MCP Server_list_virtual_keys | Retrieve all virtual keys in your Portkey organization, including their usage limits, rate limits, and status |
Portkey MCP Server_get_cost_analytics | Retrieve detailed cost analytics data over time, including total costs and averages per request |
Portkey MCP Server_get_config | Retrieve detailed information about a specific configuration, including cache settings, retry policies, and routing strategy |
Scryfall MCP Server_random_card | Retrieve a random Magic card from Scryfall. Returns JSON data for that random card. |
Scryfall MCP Server_get_rulings | Retrieve official rulings for a specified card by Scryfall ID or Oracle ID. Returns an array of rulings. Each ruling has a 'published_at' date and a 'comment' field. |
Scryfall MCP Server_search_cards | Search for MTG cards by a text query, e.g. 'oracle text includes: draw cards'. Returns a list of matching cards (with basic fields: name, set, collector_number, ID). If no matches are found, returns an error message from Scryfall. |
Scryfall MCP Server_get_card_by_id | Retrieve a card by its Scryfall ID (a 36-char UUID). Returns the card data in JSON. |
Scryfall MCP Server_get_card_by_name | Retrieve a card by its exact English name, e.g. 'Black Lotus'. Returns the card data in JSON. If multiple cards share that exact name, Scryfall returns one (usually the most relevant printing). |
Scryfall MCP Server_get_prices_by_id | Retrieve price information for a card by its Scryfall ID. Returns JSON with usd, usd_foil, eur, tix, etc. |
Scryfall MCP Server_get_prices_by_name | Retrieve price information for a card by its exact name. Returns JSON with usd, usd_foil, eur, tix, etc. |
Search MCP Server_search | AI- - 10API |
Perplexity AI MCP Server_chat_perplexity | Maintains ongoing conversations with Perplexity AI. Creates new chats or continues existing ones with full history context. |
Perplexity AI MCP Server_search | Perform a general search query to get comprehensive information on any topic |
Perplexity AI MCP Server_get_documentation | Get documentation and usage examples for a specific technology, library, or API |
Perplexity AI MCP Server_find_apis | Find and evaluate APIs that could be integrated into a project |
Perplexity AI MCP Server_check_deprecated_code | Check if code or dependencies might be using deprecated features |
Headline Vibes Analysis MCP Server_analyze_headlines | Analyze sentiment of major news headlines using natural language date input |
MCP Excel Reader_read_excel | Read an Excel file and return its contents as structured data |
mcp-any-openapi_list_functions | |
mcp-any-openapi_call_function | |
PulseMCP Server_list_servers | List MCP servers with optional filtering |
PulseMCP Server_list_integrations | List all available integrations |
MCP Server Template for Cursor IDE_mcp_fetch | Fetches a website and returns its content |
MCP Server Template for Cursor IDE_mood | Ask the server about its mood - it's always happy! |
MCP Server Starter_hello_tool | Hello tool |
Ghost MCP Server_batchly_update_post | Update multiple blog posts that match the filter criteria. |
Ghost MCP Server_browse_tags | Get the list of tags from your Ghost blog. |
Ghost MCP Server_create_invite | Create a staff user invite in Ghost. |
Ghost MCP Server_create_member | Create a new member in Ghost. |
Ghost MCP Server_list_posts | Get the list of posts from your Ghost blog. |
Ghost MCP Server_create_newsletter | Create a new newsletter. |
Ghost MCP Server_create_offer | Create a new offer in Ghost. |
Ghost MCP Server_create_post | Create a new blog post. |
Ghost MCP Server_create_tag | Create a new tag. |
Ghost MCP Server_create_tier | Create a new tier in Ghost. |
Ghost MCP Server_list_roles | Get the list of roles from your Ghost blog. |
Ghost MCP Server_create_webhook | Create a new webhook in Ghost. |
Ghost MCP Server_delete_post | Delete a blog post. |
Ghost MCP Server_delete_tag | Delete a tag. |
Ghost MCP Server_delete_user | Delete a user from Ghost. |
Ghost MCP Server_delete_webhook | Delete a webhook from Ghost. |
Ghost MCP Server_get_auth_headers | Get authenticated headers for Ghost API requests. |
Ghost MCP Server_get_close_matches | Use SequenceMatcher to return list of the best "good enough" matches. |
Ghost MCP Server_import_module | Import a module. |
Ghost MCP Server_list_members | Get the list of members from your Ghost blog. |
Ghost MCP Server_list_newsletters | Get the list of newsletters from your Ghost blog. |
Ghost MCP Server_list_offers | Get the list of offers from your Ghost blog. |
Ghost MCP Server_list_tiers | Get the list of tiers from your Ghost blog. |
Ghost MCP Server_list_users | Get the list of users from your Ghost blog. |
Ghost MCP Server_make_ghost_request | Make an authenticated request to the Ghost API. |
Ghost MCP Server_read_member | Get the details of a specific member. |
Ghost MCP Server_read_newsletter | Get the details of a specific newsletter. |
Ghost MCP Server_read_offer | Get the details of a specific offer. |
Ghost MCP Server_read_post | Get the full content and metadata of a specific blog post. |
Ghost MCP Server_read_tag | Get the full metadata of a specific tag. |
Ghost MCP Server_read_tier | Get the details of a specific tier. |
Ghost MCP Server_read_user | Get the details of a specific user. |
Ghost MCP Server_search_posts_by_title | Search for posts by title. |
Ghost MCP Server_update_member | Update an existing member in Ghost. |
Ghost MCP Server_update_newsletter | Update an existing newsletter. |
Ghost MCP Server_update_offer | Update an existing offer in Ghost. |
Ghost MCP Server_update_post | Update a blog post with new data. |
Ghost MCP Server_update_tag | Update a tag with new data. |
Ghost MCP Server_update_tier | Update an existing tier in Ghost. |
Ghost MCP Server_update_user | Update an existing user in Ghost. |
Ghost MCP Server_update_webhook | Update an existing webhook in Ghost. |
Azure MCP Server_blob_container_create | Create a new Blob Storage container |
Azure MCP Server_blob_container_list | List all Blob Storage containers |
Azure MCP Server_blob_container_delete | Delete a Blob Storage container |
Azure MCP Server_blob_upload | Upload a blob to Blob Storage |
Azure MCP Server_cosmosdb_container_create | Create a new Cosmos DB container |
Azure MCP Server_cosmosdb_container_describe | Get details about a Cosmos DB container |
Azure MCP Server_cosmosdb_container_list | List all Cosmos DB containers in a database |
Azure MCP Server_blob_delete | Delete a blob from Blob Storage |
Azure MCP Server_blob_list | List blobs in a Blob Storage container |
Azure MCP Server_blob_read | Read a blob's content from Blob Storage |
Azure MCP Server_cosmosdb_container_delete | Delete a Cosmos DB container |
Azure MCP Server_cosmosdb_item_create | Create a new item in a Cosmos DB container |
Azure MCP Server_cosmosdb_item_read | Read an item from a Cosmos DB container |
Azure MCP Server_cosmosdb_item_replace | Replace an item in a Cosmos DB container |
Azure MCP Server_cosmosdb_item_delete | Delete an item from a Cosmos DB container |
Azure MCP Server_cosmosdb_item_query | Query items in a Cosmos DB container using SQL |
Linear MCP Server_read-resource | Read a Linear resource |
Linear MCP Server_create-issue | Create a new Linear issue |
Linear MCP Server_search-issues | Search Linear issues |
gitlab mcp_create_or_update_file | Create or update a single file in a GitLab project |
gitlab mcp_search_repositories | Search for GitLab projects |
gitlab mcp_create_repository | Create a new GitLab project |
gitlab mcp_get_file_contents | Get the contents of a file or directory from a GitLab project |
gitlab mcp_push_files | Push multiple files to a GitLab project in a single commit |
gitlab mcp_create_issue | Create a new issue in a GitLab project |
gitlab mcp_create_merge_request | Create a new merge request in a GitLab project |
gitlab mcp_fork_repository | Fork a GitLab project to your account or specified namespace |
gitlab mcp_create_branch | Create a new branch in a GitLab project |
gitlab mcp_get_merge_request | Get details of a merge request |
gitlab mcp_get_merge_request_diffs | Get the changes/diffs of a merge request |
gitlab mcp_update_merge_request | Update a merge request |
gitlab mcp_create_note | Create a new note (comment) to an issue or merge request |
confluence-mcp_execute_cql_search | Execute a CQL query on Confluence to search pages |
confluence-mcp_get_page_content | Get the content of a Confluence page |
confluence-mcp_create_page | Create a new Confluence page |
confluence-mcp_update_page | Update an existing Confluence page |
confluence-mcp_execute_jql_search | Execute a JQL query on Jira to search issues |
confluence-mcp_create_jira_issue | Create a new Jira issue |
confluence-mcp_update_jira_issue | Update an existing Jira issue |
confluence-mcp_transition_jira_issue | Change the status of a Jira issue |
confluence-mcp_get_board_sprints | Get all sprints from a Jira board |
confluence-mcp_get_sprint_issues | Get all issues from a sprint |
confluence-mcp_get_current_sprint | Get current active sprint from a board with its issues |
confluence-mcp_get_epic_issues | Get all issues belonging to an epic |
confluence-mcp_get_user_issues | Get all issues assigned to or reported by a specific user in a board |
ClickUp MCP Server_get_task | Retrieve comprehensive details about a specific ClickUp task. Use this tool when you need in-depth information about a particular task, including its description, custom fields, attachments, and other metadata. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. |
ClickUp MCP Server_delete_task | Permanently remove a task from your ClickUp workspace. Use this tool with caution as deletion cannot be undone. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. For safety, the task ID is required. |
ClickUp MCP Server_get_folder | Retrieve details about a specific ClickUp folder including its name, status, and other metadata. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Helps you understand folder structure before creating or updating lists. |
ClickUp MCP Server_update_folder | Modify an existing ClickUp folder's properties, such as name or status settings. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements. |
ClickUp MCP Server_delete_folder | Permanently remove a folder from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all lists and tasks within the folder. Before calling, check if you already have the necessary folder ID from previous responses in the conversation history, as this avoids redundant lookups. |
ClickUp MCP Server_get_list | Retrieve details about a specific ClickUp list including its name, content, status options, and other metadata. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Useful to understand list structure before creating or updating tasks. |
ClickUp MCP Server_update_list | Modify an existing ClickUp list's properties, such as name, content, or status options. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. Use when reorganizing or renaming workspace elements. |
ClickUp MCP Server_delete_list | Permanently remove a list from your ClickUp workspace. Use with caution as deletion cannot be undone and will remove all tasks within the list. Before calling, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. |
ClickUp MCP Server_get_workspace_hierarchy | Retrieve the complete ClickUp workspace hierarchy, including all spaces, folders, and lists with their IDs, names, and hierarchical paths. Call this tool only when you need to discover the workspace structure and don't already have this information from recent context. Avoid using for repeated lookups of the same information. |
ClickUp MCP Server_create_task | Create a single task in a ClickUp list. Use this tool for individual task creation only. For multiple tasks, use create_bulk_tasks instead. Before calling this tool, check if you already have the necessary list ID from previous responses in the conversation history, as this avoids redundant lookups. When creating a task, you must provide either a listId or listName. |
ClickUp MCP Server_create_bulk_tasks | Create multiple tasks in a ClickUp list simultaneously. Use this tool when you need to add several related tasks in one operation. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. More efficient than creating tasks one by one for batch operations. |
ClickUp MCP Server_create_list | Create a new list directly in a ClickUp space. Use this tool when you need a top-level list not nested inside a folder. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. For creating lists inside folders, use create_list_in_folder instead. |
ClickUp MCP Server_create_folder | Create a new folder in a ClickUp space for organizing related lists. Use this tool when you need to group multiple lists together. Before calling, check if you already have the necessary space ID from previous responses in the conversation, as this avoids redundant lookups. After creating a folder, you can add lists to it using create_list_in_folder. |
ClickUp MCP Server_create_list_in_folder | Create a new list within a ClickUp folder. Use this tool when you need to add a list to an existing folder structure. Before calling, check if you already have the necessary folder ID and space ID from previous responses in the conversation, as this avoids redundant lookups. For top-level lists not in folders, use create_list instead. |
ClickUp MCP Server_move_task | Move an existing task from its current list to a different list. Use this tool when you need to relocate a task within your workspace hierarchy. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. Task statuses may be reset if the destination list uses different status options. |
ClickUp MCP Server_duplicate_task | Create a copy of an existing task in the same or different list. Use this tool when you need to replicate a task's content and properties. Before calling, check if you already have the necessary task ID and list ID from previous responses in the conversation, as this avoids redundant lookups. The duplicate will preserve name, description, priority, and other attributes from the original task. |
ClickUp MCP Server_update_task | Modify the properties of an existing task. Use this tool when you need to change a task's name, description, status, priority, or due date. Before calling, check if you already have the necessary task ID from previous responses in the conversation, as this avoids redundant lookups. Only the fields you specify will be updated; other fields will remain unchanged. |
ClickUp MCP Server_get_tasks | Retrieve tasks from a ClickUp list with optional filtering capabilities. Use this tool when you need to see existing tasks or analyze your current workload. Before calling, check if you already have the necessary list ID from previous responses in the conversation, as this avoids redundant lookups. Results can be filtered by status, assignees, dates, and more. |
Feature-Discussion MCP Server_begin_feature_discussion | Start a new feature discussion |
Feature-Discussion MCP Server_provide_feature_input | Provide information for the current feature discussion prompt |
YouTube MCP Server_download_youtube_srt | Download YouTube subtitles in SRT format so that LLM can read them. |
YouTube MCP Server_download_youtube_video | Download YouTube video to the user's default Downloads folder (usually ~/Downloads). |
MCP Playwright CDP_playwright_navigate | Navigate to a URL |
MCP Playwright CDP_playwright_screenshot | Take a screenshot of the current page or a specific element |
MCP Playwright CDP_playwright_click | Click an element on the page |
MCP Playwright CDP_playwright_fill | fill out an input field |
MCP Playwright CDP_playwright_select | Select an element on the page with Select tag |
MCP Playwright CDP_playwright_hover | Hover an element on the page |
MCP Playwright CDP_playwright_evaluate | Execute JavaScript in the browser console |
MCP Playwright CDP_playwright_get | Perform an HTTP GET request |
MCP Playwright CDP_playwright_post | Perform an HTTP POST request |
MCP Playwright CDP_playwright_put | Perform an HTTP PUT request |
MCP Playwright CDP_playwright_patch | Perform an HTTP PATCH request |
MCP Playwright CDP_playwright_delete | Perform an HTTP DELETE request |
File Edit Check MCP Server_checked_read_file | Read a file and mark it as read for future editing |
File Edit Check MCP Server_checked_write_to_file | Write to a file, requiring it to have been read first if it exists |
File Edit Check MCP Server_checked_apply_diff | Apply a diff to a file, requiring it to have been read first |
File Edit Check MCP Server_list_my_tools | List the tools registered in this server |
MCP Image Placeholder Server_image_placeholder | |
Puppeteer MCP Server_puppeteer_connect_active_tab | Connect to an existing Chrome instance with remote debugging enabled |
Puppeteer MCP Server_puppeteer_navigate | Navigate to a URL |
Puppeteer MCP Server_puppeteer_screenshot | Take a screenshot of the current page or a specific element |
Puppeteer MCP Server_puppeteer_click | Click an element on the page |
Puppeteer MCP Server_puppeteer_fill | Fill out an input field |
Puppeteer MCP Server_puppeteer_select | Select an element on the page with Select tag |
Puppeteer MCP Server_puppeteer_hover | Hover an element on the page |
Puppeteer MCP Server_puppeteer_evaluate | Execute JavaScript in the browser console |
MCP Live Events Server_get_upcoming_events | Get upcoming music events for a city. Args: city: City in which to search for events. start_dttm_str: Start date/time in ISO 8601 format (YYYY-MM-DDTHH). Example: 2025-02-08T00:00:00Z end_dttm_str: Start date/time in ISO 8601 format (YYYY-MM-DDTHH). Example: 2025-02-10T00:00:00Z keyword: Any optional keywords to help filter search results. |
MCP Server Template_architect | MCP server for the LLM Architect tool. Exposes resource "/llm-architect/chat" accepting POST requests with a prompt and optional conversationId, and interacts with the llm chat CLI to provide architectural design feedback while maintaining conversation context. |
Perplexity AI MCP Server_perplexity_search | Search using Perplexity AI's models with context-aware responses and citations |
Decent-Sampler Drums MCP Server_configure_drum_controls | Configure global pitch and envelope controls for each drum type. This tool will:
Error Handling:
Success Response: Returns XML structure containing:
|
Decent-Sampler Drums MCP Server_configure_round_robin | Configure round robin sample playback for a set of samples. This tool will:
Error Handling:
Success Response: Returns XML structure with:
|
Decent-Sampler Drums MCP Server_analyze_wav_samples | Analyze WAV files to detect common issues in drum kit samples. This tool checks for:
Error Handling:
Success Response: Returns detailed analysis including:
IMPORTANT: Always use absolute paths (e.g., 'C:/Users/username/Documents/Samples/kick.wav') rather than relative paths. |
Decent-Sampler Drums MCP Server_configure_mic_routing | Configure multi-mic routing with MIDI controls for drum samples. This tool will:
Error Handling:
Success Response: Returns XML structure containing:
|
Decent-Sampler Drums MCP Server_generate_drum_groups | Generate DecentSampler <groups> XML for drum kits. This tool supports two configuration types: BasicDrumKitConfig:
AdvancedDrumKitConfig:
Best Practices:
Error Handling:
Example Configurations:
Success Response: Returns complete XML structure with:
|
Flutter Tools MCP Server_get_diagnostics | Get Flutter/Dart diagnostics for a file |
Flutter Tools MCP Server_apply_fixes | Apply Dart fix suggestions to a file |
YouTube Transcript MCP Server_get_transcript | Retrieves the transcript of a YouTube video. |
MCP Source Relation Server_get_source_relation | Analyze dependencies between source files |
Rami Levy MCP Server_add_to_cart | Add one or more items to the shopping cart |
Rami Levy MCP Server_remove_from_cart | Remove items from the cart by providing an updated list of items to keep |
Rami Levy MCP Server_update_quantity | Update the quantity of an item in the cart |
Rami Levy MCP Server_search_items | Search for items in the Rami Levy catalog |
Research MCP Server_get_survey_summaries | Get survey summaries |
Research MCP Server_get_survey_summary | Get survey summary |
Research MCP Server_get_property_definition | Get property definition for survey summary |
Research MCP Server_update_survey_summary_property | |
Research MCP Server_update_survey_summary_block | - |
Research MCP Server_create_new_survey_summary | - |
MCP Server Pagespeed_analyze_pagespeed | Analyzes a webpage using Google PageSpeed Insights API |
MCP-MySQL Server_connect_db | Connect to MySQL database using URL or config |
MCP-MySQL Server_query | Execute a SELECT query |
MCP-MySQL Server_execute | Execute an INSERT, UPDATE, or DELETE query |
MCP-MySQL Server_list_tables | List all tables in the database |
MCP-MySQL Server_describe_table | Get table structure |
MCP-MySQL Server_create_table | Create a new table in the database |
MCP-MySQL Server_add_column | Add a new column to existing table |
drupal-modules-mcp MCP Server_get_module_info | Get information about a Drupal module from drupal.org |
mcp-server-asana_asana_create_task | Create a new task in a project |
mcp-server-asana_asana_get_task_stories | Get comments and stories for a specific task |
mcp-server-asana_asana_update_task | Update an existing task's details |
mcp-server-asana_asana_get_project | Get detailed information about a specific project |
mcp-server-asana_asana_get_project_task_counts | Get the number of tasks in a project |
mcp-server-asana_asana_get_project_sections | Get sections in a project |
mcp-server-asana_asana_create_task_story | Create a comment or story on a task |
mcp-server-asana_asana_add_task_dependencies | Set dependencies for a task |
mcp-server-asana_asana_add_task_dependents | Set dependents for a task (tasks that depend on this task) |
mcp-server-asana_asana_create_subtask | Create a new subtask for an existing task |
mcp-server-asana_asana_get_multiple_tasks_by_gid | Get detailed information about multiple tasks by their GIDs (maximum 25 tasks) |
mcp-server-asana_asana_get_project_status | Get a project status update |
mcp-server-asana_asana_get_project_statuses | Get all status updates for a project |
mcp-server-asana_asana_create_project_status | Create a new status update for a project |
mcp-server-asana_asana_delete_project_status | Delete a project status update |
mcp-server-asana_asana_set_parent_for_task | Set the parent of a task and position the subtask within the other subtasks of that parent |
mcp-server-asana_asana_get_tasks_for_tag | Get tasks for a specific tag |
mcp-server-asana_asana_get_tags_for_workspace | Get tags in a workspace |
mcp-server-asana_asana_list_workspaces | List all available workspaces in Asana |
mcp-server-asana_asana_search_projects | Search for projects in Asana using name pattern matching |
mcp-server-asana_asana_search_tasks | Search tasks in a workspace with advanced filtering options |
mcp-server-asana_asana_get_task | Get detailed information about a specific task |
MCP Source Tree Server_get_src_tree | |
Code Analysis MCP Server_initialize_repository | Initialize the repository path for future code analysis operations. |
Code Analysis MCP Server_get_repo_info | Get information about the currently initialized code repository. |
Code Analysis MCP Server_get_repo_structure | Get the structure of files and directories in the repository. |
Code Analysis MCP Server_read_file | Read and display the contents of a file from the repository. |
MCP Server Firecrawl_crawl | Crawls a website starting from a base URL |
MCP Server Firecrawl_map | Maps a website's structure |
MCP Server Firecrawl_extract | Extracts structured data from URLs |
MCP Server Firecrawl_scrape_url | Scrape content from a URL using Firecrawl API |
MCP Server Firecrawl_search_content | Search content using Firecrawl API |
Datetime MCP Server_add-note | Add a new note |
Datetime MCP Server_get-current-time | Get the current time in various formats |
Datetime MCP Server_format-date | Format a date string according to the specified format |
MCP Async Server_process_task | Start processing a task asynchronously. |
MCP Async Server_check_task_status | Check the status of an async task |
Drupal-Modules-MCP MCP Server_get_command_info | Get detailed information about a specific Drush command |
MCP Server Template_example-tool | An example tool that processes input data |
Academic Paper Search MCP Server_search_papers | Search for papers across multiple sources. |
Academic Paper Search MCP Server_fetch_paper_details | Get detailed information about a specific paper. |
Academic Paper Search MCP Server_search_by_topic | Search for papers by topic with optional date range. |
Web Accessibility MCP Server_simulate_colorblind | Simulate how a webpage looks for colorblind users |
Web Accessibility MCP Server_check_accessibility | Check web accessibility of a given URL using axe-core |
Web3 MCP Server_getSlot | Get the current slot |
Web3 MCP Server_getBalance | Get balance for a Solana address |
Web3 MCP Server_getKeypairInfo | Get information about a keypair from its secret key |
Web3 MCP Server_getAccountInfo | Get detailed account information for a Solana address |
Web3 MCP Server_transfer | Transfer SOL from your keypair to another address |
Web3 MCP Server_getSplTokenBalances | Get SPL token balances for a Solana address |
Web3 MCP Server_getSplTokenInfo | Get detailed information about a specific SPL token account |
Web3 MCP Server_getEvmBalance | Get native token balance for an EVM address on any supported network |
Web3 MCP Server_getEvmTokenBalance | Get ERC-20 token balance for an address on any supported EVM network |
Web3 MCP Server_getGasPrice | Get current gas price for any supported EVM network |
MCP Server Reddit_get_subreddit_hot_posts | Get hot posts from a specific subreddit |
MCP Server Reddit_get_frontpage_posts | Get hot posts from Reddit frontpage |
MCP Server Reddit_get_subreddit_info | Get information about a subreddit |
MCP Server Reddit_get_subreddit_new_posts | Get new posts from a specific subreddit |
MCP Server Reddit_get_subreddit_top_posts | Get top posts from a specific subreddit |
MCP Server Reddit_get_subreddit_rising_posts | Get rising posts from a specific subreddit |
MCP Server Reddit_get_post_content | Get detailed content of a specific post |
MCP Server Reddit_get_post_comments | Get comments from a post |
MCP Code Executor_execute_code | Execute Python code in the specified conda environment |
Safari Screenshot MCP Server_take_screenshot | Take a screenshot of a webpage using Safari on macOS |
ClickUp MCP Server_clickup_create_task | Create a new task in ClickUp workspace |
ClickUp MCP Server_clickup_update_task | Update an existing task in ClickUp |
ClickUp MCP Server_clickup_get_teams | Get all teams accessible to the authenticated user |
ClickUp MCP Server_clickup_get_lists | Get all lists in a specific folder |
ClickUp MCP Server_clickup_create_board | Create a new board in a ClickUp space |
MCP Architect_analyze_architecture | Perform a comprehensive analysis of a software architecture |
MCP Architect_evaluate_architecture | Evaluate an architecture design against specific criteria |
MCP Architect_generate_architecture | Generate a software architecture design based on requirements |
Bitcoin MCP Server_generate_key | Generate a new Bitcoin key pair and address |
Bitcoin MCP Server_validate_address | Validate a Bitcoin address |
Bitcoin MCP Server_decode_tx | Decode a Bitcoin transaction |
Bitcoin MCP Server_get_latest_block | Get the latest block |
Bitcoin MCP Server_get_transaction | Get transaction details |
MCP Access Server_get-webpage-markdown | Parses a web page into Markdown and returns it |
MCP Access Server_get-pdf-content | Text parsing and return of PDF content |
MCP Access Server_command-execute | Executes a command in the allowed list: ls / mkdir / cd / npm / npx / node / git / rm |
Perplexity MCP Server_search | Search the web using Perplexity AI |
Git Forensics MCP_get_branch_overview | Get high-level overview of branch states and relationships |
Git Forensics MCP_analyze_time_period | Analyze detailed development activity in a specific time period |
Git Forensics MCP_analyze_file_changes | Analyze changes to specific files across branches |
Git Forensics MCP_get_merge_recommendations | Get detailed merge strategy recommendations |
Wegene Assistant MCP Server_wegene-oauth | Authorizing a user's account using WeGene Open API with oAuth2 protocol and retrieve a valid access token for further use |
Wegene Assistant MCP Server_wegene-get-profiles | Retrieve all the profiles under the current account |
Wegene Assistant MCP Server_wegene-get-report-info | Get all available report information |
Wegene Assistant MCP Server_wegene-get-report | Get a specific genetic test report from a profile |
GitHub MCP Server Plus_create_or_update_file | Create or update a single file in a GitHub repository |
GitHub MCP Server Plus_search_repositories | Search for GitHub repositories |
GitHub MCP Server Plus_create_repository | Create a new GitHub repository in your account |
GitHub MCP Server Plus_get_file_contents | Get the contents of a file or directory from a GitHub repository |
GitHub MCP Server Plus_push_files_content | Push multiple files with direct content to a GitHub repository in a single commit |
GitHub MCP Server Plus_push_files_from_path | Push multiple files from filesystem paths to a GitHub repository in a single commit |
GitHub MCP Server Plus_create_issue | Create a new issue in a GitHub repository |
GitHub MCP Server Plus_create_pull_request | Create a new pull request in a GitHub repository |
GitHub MCP Server Plus_fork_repository | Fork a GitHub repository to your account or specified organization |
GitHub MCP Server Plus_create_branch | Create a new branch in a GitHub repository |
GitHub MCP Server Plus_list_commits | Get list of commits of a branch in a GitHub repository |
GitHub MCP Server Plus_list_issues | List issues in a GitHub repository with filtering options |
GitHub MCP Server Plus_update_issue | Update an existing issue in a GitHub repository |
GitHub MCP Server Plus_add_issue_comment | Add a comment to an existing issue |
GitHub MCP Server Plus_search_code | Search for code across GitHub repositories |
GitHub MCP Server Plus_search_issues | Search for issues and pull requests across GitHub repositories |
GitHub MCP Server Plus_search_users | Search for users on GitHub |
GitHub MCP Server Plus_get_issue | Get details of a specific issue in a GitHub repository. |
Deepseek R1 MCP Server_deepseek_r1 | Generate text using DeepSeek R1 model |
Daipendency_dependency_docs_getter | Extract all the documentation and public API for a dependency of a local project |
browser-use MCP server_add-note | Add a new note |
MCP Ollama Server_list_models | List all downloaded Ollama models |
MCP Ollama Server_show_model | Get detailed information about a specific model |
MCP Ollama Server_ask_model | Ask a question to a specific Ollama model |
MCP Ollama Link_query-ollama | Query the Ollama model with performance tracking |
Memory Cache Server_store_data | Store data in the cache with optional TTL |
Memory Cache Server_retrieve_data | Retrieve data from the cache |
Memory Cache Server_clear_cache | Clear specific or all cache entries |
Memory Cache Server_get_cache_stats | Get cache statistics |
mcp-registry-server_retrieve_mcps | Performs retrieval from our registry of MCPs. |
Qwen Max MCP Server_qwen_max | Generate text using Qwen Max model |
Weaviate MCP Server_mcp_fetch | Fetches a website and returns its content |
Weaviate MCP Server_mood | Ask the server about its mood - it's always happy! |
LumbreTravel MCP Server_delete_hotel | Eliminar un hotel en LumbreTravel. |
LumbreTravel MCP Server_reactivate_hotel | Reactivar un hotel en LumbreTravel |
LumbreTravel MCP Server_get_hotel_by_name | Buscar hoteles por su nombre, retorna la lista de hoteles encontrados. |
LumbreTravel MCP Server_get_program | Obtiene un programa de viajes de LumbreTravel por ID |
LumbreTravel MCP Server_get_programs_by_name | Busca programas de viajes de LumbreTravel por nombre |
LumbreTravel MCP Server_get_programs_by_date_range | Obtiene programas de viajes de LumbreTravel por rango de fechas |
LumbreTravel MCP Server_daily_activities | Obtiene las actividades diarias en LumbreTravel. Retorna un objeto JSON con un array de actividaes en la propiedad 'activities' con las actividades del da buscado. En la propiedad 'monthlyTotals' se encuentra el total de actividades de cada da del mes |
LumbreTravel MCP Server_season_summary | Obtiene un resumen de pasajeros a lo largo de una temporada. Retorna un objeto JSON que contiene un array por cada ao de la temporada. En cada item del array la propiedad 'yearTotal' contiene el total de pasajeros del ao. En la propiedad 'agencies' se encuentra un resumen por mes de los pasajeros del ao asociados a cada agencia. Y en el array 'monthlyTotals' se encuentra el total de pasajeros de cada mes. Esta tool es muy til para obtener el total de pasajeros de una temporada y ver como se distribuye por agencias. Siempre que se quiera obtener informacin estadistica de pasajeros se debe usar esta tool. Al ser una solucion para agencias de viaje los analisis estadsticos pueden ser muy tiles para tomar decisiones de negocio. Se pueden usar estos datos para armar graficos e indicadores. Ademas es normal que las fechas de analisis sean en el futuro. |
LumbreTravel MCP Server_create_program | Crea un nuevo programa de viajes en LumbreTravel. Antes de crear un nuevo programa se debe preguntar al si quiere que primero se busque el programa a ver si existe. Si no se especifica la fecha de inicio o fin del programa, no la asumas, pide al usuario que la especifique. Si no se especifica el ID de la agencia, pide al usuario que la especifique. |
LumbreTravel MCP Server_update_program | Actualiza un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_delete_program | Elimina un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_reactivate_program | Reactiva un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_agencies | Obtiene todas las agencias disponibles para asociar a un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_services | Obtiene todos los servicios disponibles para asociar a una actividad en un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_hotels | Obtiene todos los hoteles disponibles para asociar a una actividad en un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_leaders | Obtiene todos los guas disponibles para asociar a una actividad en un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_vehicles | Obtiene todos los vehculos disponibles para asociar a una actividad en un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_includes | Obtiene todos los incluye o extras disponibles para asociar a una actividad en un programa de viajes en LumbreTravel |
LumbreTravel MCP Server_list_service_languages | Obtiene todos los idiomas en los que se pueden prestar los servicios para asociar a una actividad en un programa de viajes en LumbreTravel. Estos idiomas solo se pueden usar para asociar a un servicio. Estos idiomas solo pueden ser asociados a un servicio |
LumbreTravel MCP Server_list_providers | Obtiene todos los proveedores disponibles en LumbreTravel |
LumbreTravel MCP Server_get_passengers_by_fullname | Obtiene pasajeros por nombre completo en LumbreTravel |
LumbreTravel MCP Server_get_passengers_by_email | Obtiene pasajeros por email en LumbreTravel |
LumbreTravel MCP Server_reactivate_agency | Reactivar una agencia en LumbreTravel |
LumbreTravel MCP Server_create_passengers | Crea pasajeros en LumbreTravel, usa esta tool cuando el asistente recibe los datos de los pasajeros como parte del pedido del usuario |
LumbreTravel MCP Server_update_passengers | Edita pasajeros en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero editado. |
LumbreTravel MCP Server_delete_passengers | Elimina pasajeros en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero eliminado. |
LumbreTravel MCP Server_delete_passenger | Elimina un pasajero en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero eliminado. |
LumbreTravel MCP Server_reactivate_passenger | Reactiva un pasajero en LumbreTravel teniendo en cuenta que se conoce el ID del pasajero. Si el id no se conoce entonces se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id del pasajero. Retorna el pasajero reactivado. |
LumbreTravel MCP Server_add_passengers_to_program | Agrega pasajeros a un programa en LumbreTravel. Es importante que los pasajeros ya existan en LumbreTravel, si no existen se puede usar la tool create_passengers para crearlos. O si existen se puede usar la tool get_passengers_by_fullname o get_passengers_by_email para obtener el id de cada pasajero. |
LumbreTravel MCP Server_get_agency_by_name | Obtener una agencia por nombre, retorna la agencia encontrada. |
LumbreTravel MCP Server_create_hotel | Crear un hotel en LumbreTravel, retorna el hotel creado. Antes de crear un nuevo hotel se debe preguntar al si quiere que primero se busque el hotel a ver si existe. |
LumbreTravel MCP Server_update_hotel | Actualizar un hotel en LumbreTravel, retorna el hotel actualizado. |
LumbreTravel MCP Server_add_activities | Crea actividades asociadas a un programa en LumbreTravel. Es importante que los servicios, hoteles, guas, vehculos y extras ya existan en LumbreTravel, si no existen se puede usar las tools create_service, create_hotel, create_leader, create_vehicle y create_include para crearlos. O si existen se puede usar las tools get_services_by_name, get_hotel_by_name, get_leader_by_name, get_vehicle_by_name y get_include_by_name para obtener el id de cada servicio, hotel, gua, vehculo y extra. |
LumbreTravel MCP Server_update_activities | Actualizar mltiples actividades asociadas a un programa |
LumbreTravel MCP Server_delete_activities | Eliminar mltiples actividades asociadas a un programa |
LumbreTravel MCP Server_create_agency | Crear una agencia en LumbreTravel, retorna la agencia creada. Antes de crear una nueva agencia se debe preguntar al si quiere que primero se busque la agencia a ver si existe. La agencia creada se puede usar para asociarle programas en LumbreTravel. Es importante que el proveedor de la agencia tenga un ID de proveedor en LumbreTravel. Si el proveedor no tiene un ID de proveedor en LumbreTravel, se puede usar la tool create_provider para crear un proveedor y luego usar el ID de proveedor creado para crear la agencia. Si el proveedor ya tiene un ID de proveedor en LumbreTravel, se puede usar el ID de proveedor para crear la agencia. Para buscar un proveedor por nombre se puede usar la tool get_provider_by_name. |
LumbreTravel MCP Server_update_agency | Actualizar una agencia en LumbreTravel, retorna la agencia actualizada. La agencia actualizada se puede usar para asociarle programas en LumbreTravel. Es importante que el proveedor de la agencia tenga un ID de proveedor en LumbreTravel. Si el proveedor no tiene un ID de proveedor en LumbreTravel, se puede usar la tool create_provider para crear un proveedor y luego usar el ID de proveedor creado para crear la agencia. Si el proveedor ya tiene un ID de proveedor en LumbreTravel, se puede usar el ID de proveedor para crear la agencia. Para buscar un proveedor por nombre se puede usar la tool get_provider_by_name. |
LumbreTravel MCP Server_delete_agency | Eliminar una agencia en LumbreTravel. La agencia eliminada no se puede usar para asociarle programas en LumbreTravel. |
LumbreTravel MCP Server_create_leader | Crear un gua en LumbreTravel. Antes de crear un nuevo gua se debe preguntar al si quiere que primero se busque el gua a ver si existe. |
LumbreTravel MCP Server_update_leader | Actualizar un gua en LumbreTravel, retorna el gua actualizado. Es importante que el gua ya exista en LumbreTravel, si no existe se puede usar la tool create_leader para crearlo. O si existe se puede usar la tool get_leader_by_name para obtener el id del gua. |
LumbreTravel MCP Server_delete_leader | Eliminar un gua en LumbreTravel |
LumbreTravel MCP Server_reactivate_leader | Reactivar un gua en LumbreTravel |
LumbreTravel MCP Server_get_leader_by_name | Buscar guas por su nombre, retorna la lista de guas encontrados. |
LumbreTravel MCP Server_create_vehicle | Crear un vehculo en LumbreTravel. Antes de crear un nuevo vehculo se debe preguntar al si quiere que primero se busque el vehculo a ver si existe. |
LumbreTravel MCP Server_update_vehicle | Actualizar un vehculo en LumbreTravel, retorna el vehculo actualizado. Es importante que el vehculo ya exista en LumbreTravel, si no existe se puede usar la tool create_vehicle para crearlo. O si existe se puede usar la tool get_vehicle_by_name para obtener el id del vehculo. |
LumbreTravel MCP Server_delete_vehicle | Eliminar un vehculo en LumbreTravel |
LumbreTravel MCP Server_reactivate_vehicle | Reactivar un vehculo en LumbreTravel |
LumbreTravel MCP Server_get_vehicle_by_name | Buscar vehculos por su nombre, retorna la lista de vehculos encontrados. |
LumbreTravel MCP Server_create_include | Crear un extra o includo en LumbreTravel. Antes de crear un nuevo extra o includo se debe preguntar al si quiere que primero se busque el extra o includo a ver si existe. |
LumbreTravel MCP Server_update_include | Actualizar un extra o includo en LumbreTravel, retorna el extra o includo actualizado. Es importante que el extra o includo ya exista en LumbreTravel, si no existe se puede usar la tool create_include para crearlo. O si existe se puede usar la tool get_include_by_name para obtener el id del extra o includo. |
LumbreTravel MCP Server_delete_include | Eliminar un extra o includo en LumbreTravel |
LumbreTravel MCP Server_reactivate_include | Reactivar un extra o includo en LumbreTravel |
LumbreTravel MCP Server_get_includes_by_name | Buscar extras o includos por su nombre, retorna la lista de extras o includos encontrados. |
LumbreTravel MCP Server_create_service_language | Crear un idioma de servicio en LumbreTravel. Antes de crear un nuevo idioma de servicio se debe preguntar al si quiere que primero se busque el idioma de servicio a ver si existe. Este idioma solo se puede usar para asociar a un servicio. |
LumbreTravel MCP Server_update_service_language | Actualizar un idioma de servicio en LumbreTravel, retorna el idioma de servicio actualizado. Es importante que el idioma de servicio ya exista en LumbreTravel, si no existe se puede usar la tool create_service_language para crearlo. O si existe se puede usar la tool get_service_language_by_name para obtener el id del idioma de servicio. Este idioma solo se puede usar para asociar a un servicio. |
LumbreTravel MCP Server_delete_service_language | Eliminar un idioma de servicio en LumbreTravel |
LumbreTravel MCP Server_reactivate_service_language | Reactivar un idioma de servicio en LumbreTravel |
LumbreTravel MCP Server_get_service_language_by_name | Buscar idiomas de servicio por su nombre, retorna la lista de idiomas de servicio encontrados. |
LumbreTravel MCP Server_create_provider | Crear un proveedor en LumbreTravel. Antes de crear un nuevo proveedor se debe preguntar al si quiere que primero se busque el proveedor a ver si existe. |
LumbreTravel MCP Server_update_provider | Actualizar un proveedor en LumbreTravel, retorna el proveedor actualizado. Es importante que el proveedor ya exista en LumbreTravel, si no existe se puede usar la tool create_provider para crearlo. O si existe se puede usar la tool get_provider_by_name para obtener el id del proveedor. |
LumbreTravel MCP Server_delete_provider | Eliminar un proveedor en LumbreTravel |
LumbreTravel MCP Server_reactivate_provider | Reactivar un proveedor en LumbreTravel |
LumbreTravel MCP Server_get_provider_by_name | Buscar proveedores por su nombre, retorna la lista de proveedores encontrados. |
LumbreTravel MCP Server_create_service | Crear un servicio en LumbreTravel. Antes de crear un nuevo servicio se debe preguntar al si quiere que primero se busque el servicio a ver si existe. |
LumbreTravel MCP Server_update_service | Actualizar un servicio en LumbreTravel, retorna el servicio actualizado. Es importante que el servicio ya exista en LumbreTravel, si no existe se puede usar la tool create_service para crearlo. O si existe se puede usar la tool get_services_by_name para obtener el id del servicio. |
LumbreTravel MCP Server_delete_service | Eliminar un servicio en LumbreTravel |
LumbreTravel MCP Server_reactivate_service | Reactivar un servicio en LumbreTravel |
LumbreTravel MCP Server_get_services_by_name | Buscar servicios por su nombre, retorna la lista de servicios encontrados. |
Image Generation MCP Server_generate-image | Generate an image based on a prompt |
Knowledge Graph Memory Server_create_entities | Create multiple new entities in the knowledge graph |
Knowledge Graph Memory Server_create_relations | Create multiple new relations between entities in the knowledge graph. Relations should be in active voice |
Knowledge Graph Memory Server_add_observations | Add new observations to existing entities in the knowledge graph |
Knowledge Graph Memory Server_delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
Knowledge Graph Memory Server_delete_observations | Delete specific observations from entities in the knowledge graph |
Knowledge Graph Memory Server_delete_relations | Delete multiple relations from the knowledge graph |
Knowledge Graph Memory Server_read_graph | Read the entire knowledge graph |
Knowledge Graph Memory Server_search_nodes | Search for nodes in the knowledge graph based on one or more keywords. The search covers entity names, types, subdomains, and observation content. Multiple keywords are treated as OR conditions, where any keyword must match somewhere in the entity's fields. |
Knowledge Graph Memory Server_open_nodes | Open specific nodes in the knowledge graph by their names. Returns the complete node information including subdomain and all metadata. |
Unconventional-thinking MCP server_generate_unreasonable_thought | Generate a new unreasonable thought that challenges conventional thinking |
Unconventional-thinking MCP server_branch_thought | Create a new branch of thinking from an existing thought |
Unconventional-thinking MCP server_list_thoughts | List all thoughts in the current thinking session |
Kibela MCP Server_kibela_search_notes | Search Kibela notes with given query |
Kibela MCP Server_kibela_get_my_notes | Get your latest notes from Kibela |
Kibela MCP Server_kibela_get_note_content | Get content and comments of a specific note |
Twitch MCP Server_get_clips | - |
Twitch MCP Server_get_chat_settings | - |
Twitch MCP Server_get_videos | - |
Twitch MCP Server_get_global_emotes | - |
Twitch MCP Server_get_global_badges | - |
Twitch MCP Server_get_users | - |
Twitch MCP Server_get_video_comments | - |
Twitch MCP Server_get_game | - |
Twitch MCP Server_get_top_games | - |
Twitch MCP Server_get_channel_info | - |
Twitch MCP Server_get_stream_info | - |
Twitch MCP Server_search_categories | - |
Twitch MCP Server_search_channels | - |
Twitch MCP Server_get_streams | - |
MCP Google Server_search | Perform a web search query |
MCP Google Server_read_webpage | Fetch and extract text content from a webpage |
Voyp MCP Server_search_place | Search place details in a given location |
Voyp MCP Server_search_place_by_number | Find place name and address by phone number |
Voyp MCP Server_get_call | Retrieve call details |
Voyp MCP Server_get_user | Retrieve user profile |
Voyp MCP Server_start_call | Start a new phone call via Voyp API. The API returns the call id and a URL where users can track the progress of the call |
Voyp MCP Server_hangup_call | Hangup an existing call |
Voyp MCP Server_search_places | Search places in a given location |
Perplexity MCP Server_perplexity_search | Search the web using Perplexity AI |
MCP Journaling Server_start_new_session | Start a new journaling session by clearing previous conversation log. Returns: str: Welcome message with current save location |
MCP Journaling Server_record_interaction | Record both the user's message and assistant's response. Args: user_message: The user's message assistant_message: The assistant's response Returns: str: Confirmation message |
MCP Journaling Server_generate_session_summary | Generate a markdown summary of the journaling session. Args: summary: The llm generated summay of the conversation Returns: str: Confirmation message |
MercadoLibre MCP Server_seller_reputation | Obtiene la reputacin de un vendedor |
MercadoLibre MCP Server_product_reviews | Obtiene las reseas de un producto |
MercadoLibre MCP Server_product_description | Obtiene la descripcin de un producto |
MercadoLibre MCP Server_search_products | Busca productos en MercadoLibre |
Audiense Insights MCP Server_get-reports | Retrieves the list of Audiense insights reports owned by the authenticated user. |
Audiense Insights MCP Server_get-report-info | Retrieves detailed information about a specific intelligence report, including its status, segmentation type, audience size, segments, and access links. |
Audiense Insights MCP Server_compare-audience-influencers | Compares the influencers of an audience with a baseline audience. The baseline is determined as follows: If the selection was the full audience and a single country represents more than 50% of the audience, that country is used as the baseline. Otherwise, the Global baseline is applied. If the selection was a specific segment, the full audience is used as the baseline. Each influencer comparison includes: - Affinity (%) - The level of alignment between the influencer and the audience. Baseline Affinity (%) - The influencers affinity within the baseline audience. Uniqueness Score - A measure of how distinct the influencer is within the selected audience compared to the baseline. |
Audiense Insights MCP Server_get-audience-content | Retrieves audience content engagement details for a given audience. This tool provides a detailed breakdown of the content an audience interacts with, including:
Each category contains:
|
Audiense Insights MCP Server_report-summary | Generates a comprehensive summary of an Audiense report, including segment details, top insights, and influencers. |
Audiense Insights MCP Server_get-audience-insights | Retrieves aggregated insights for a given audience ID, providing statistical distributions across various attributes. Available insights include demographics (e.g., gender, age, country), behavioral traits (e.g., active hours, platform usage), psychographics (e.g., personality traits, interests), and socioeconomic factors (e.g., income, education status). |
Audiense Insights MCP Server_get-baselines | Retrieves available baselines, optionally filtered by country. |
Audiense Insights MCP Server_get-categories | Retrieves the list of available affinity categories that can be used as the categories parameter in the compare-audience-influencers tool. |
MCP Server Starter_hello_tool | Hello tool |
mcp-editor_view | View file contents or directory listing |
mcp-editor_create | Create a new file with specified content |
mcp-editor_string_replace | Replace a string in a file with a new string |
mcp-editor_insert | Insert text at a specific line in the file |
mcp-editor_undo_edit | Undo the last edit to a file |
Flutter MCP Server_search_flutter_docs | Search Flutter documentation for a given query |
MCP Webhook Server_send_message | Send message to webhook endpoint |
ClickSend MCP Server_send_sms | Send SMS messages via ClickSend |
ClickSend MCP Server_make_tts_call | Make Text-to-Speech calls via ClickSend |
MCP-PIF Server_read | Read file contents |
MCP-PIF Server_write | Write or modify file content |
MCP-PIF Server_cd | Change current directory |
MCP-PIF Server_mkdir | Create a new directory |
MCP-PIF Server_ls | List directory contents |
MCP-PIF Server_pwd | Print working directory |
MCP-PIF Server_rename | Rename a file or directory |
MCP-PIF Server_move | Move a file or directory to a new location |
MCP-PIF Server_delete | Delete a file or directory |
MCP-PIF Server_reason | Process thoughts with flexible relationships |
MCP-PIF Server_think | Non-verbal processing time |
MCP-PIF Server_journal_create | Create a new journal entry |
MCP-PIF Server_journal_read | Read journal entries within a date range. Dates should be in YYYY-MM-DD format. Times are handled in UTC, and the 'to' date is inclusive through end of day. |
PostgreSQL MCP Server_analyze_database | Analyze PostgreSQL database configuration and performance |
PostgreSQL MCP Server_get_setup_instructions | Get step-by-step PostgreSQL setup instructions |
PostgreSQL MCP Server_debug_database | Debug common PostgreSQL issues |
Slack User MCP Server_slack_list_channels | List public channels in the workspace with pagination |
Slack User MCP Server_slack_post_message | Post a new message to a Slack channel |
Slack User MCP Server_slack_reply_to_thread | Reply to a specific message thread in Slack |
Slack User MCP Server_slack_add_reaction | Add a reaction emoji to a message |
Slack User MCP Server_slack_get_channel_history | Get recent messages from a channel |
Slack User MCP Server_slack_get_thread_replies | Get all replies in a message thread |
Slack User MCP Server_slack_get_users | Get a list of all users in the workspace with their basic profile information |
Slack User MCP Server_slack_get_user_profile | Get detailed profile information for a specific user |
Shopify MCP Server_get-products | Get all products or search by title |
Shopify MCP Server_get-products-by-collection | Get products from a specific collection |
Shopify MCP Server_get-products-by-ids | Get products by their IDs |
Shopify MCP Server_get-variants-by-ids | Get product variants by their IDs |
Shopify MCP Server_get-customers | Get shopify customers with pagination support |
Shopify MCP Server_tag-customer | Add tags to a customer |
Shopify MCP Server_get-orders | Get shopify orders with advanced filtering and sorting |
Shopify MCP Server_get-order | Get a single order by ID |
Shopify MCP Server_create-discount | Create a basic discount code |
Shopify MCP Server_create-draft-order | Create a draft order |
Shopify MCP Server_complete-draft-order | Complete a draft order |
Shopify MCP Server_get-collections | Get all collections |
Shopify MCP Server_get-shop | Get shop details |
Shopify MCP Server_get-shop-details | Get extended shop details including shipping countries |
Shopify MCP Server_manage-webhook | Subscribe, find, or unsubscribe webhooks |
descope-mcp-server_search-audits | Search Descope project audit logs |
descope-mcp-server_search-users | Search for users in Descope project |
descope-mcp-server_create-user | Create a new user in Descope project |
descope-mcp-server_invite-user | Create and invite a new user to the Descope project |
AlphaVantage-MCP_get-stock-quote | Get current stock quote information |
AlphaVantage-MCP_get-company-info | Get detailed company information |
AlphaVantage-MCP_get-crypto-exchange-rate | Get current cryptocurrency exchange rate |
AlphaVantage-MCP_get-time-series | Get daily time series data for a stock |
AlphaVantage-MCP_get-historical-options | Get historical options chain data for a stock with sorting capabilities |
Morpho API MCP Server_get_vaults | Retrieves all vaults with their current states. |
Morpho API MCP Server_get_vault_positions | Get positions for a specific vault. |
Morpho API MCP Server_get_vault_transactions | Get latest vault transactions. |
Morpho API MCP Server_get_markets | Retrieves markets from Morpho with pagination, ordering, and filtering support. |
Morpho API MCP Server_get_whitelisted_markets | Retrieves only whitelisted markets from Morpho. |
Morpho API MCP Server_get_asset_price | Get current price and yield information for specific assets. |
Morpho API MCP Server_get_market_positions | Get positions overview for specific markets with pagination and ordering. |
Morpho API MCP Server_get_historical_apy | Get historical APY data for a specific market. |
Morpho API MCP Server_get_oracle_details | Get oracle details for a specific market. |
Morpho API MCP Server_get_account_overview | Get account overview including positions and transactions. |
Morpho API MCP Server_get_liquidations | Get liquidation events with filtering and pagination. |
Morpho API MCP Server_get_vault_allocation | Get vault allocation for a specific market. |
Morpho API MCP Server_get_vault_reallocates | Get vault reallocates for a specific vault. |
Morpho API MCP Server_get_vault_apy_history | Get historical APY data for a vault. |
Release Notes MCP Server_generate_release_notes | Generate release notes from commits in a given timeframe or commit range |
Release Notes MCP Server_analyze_commits | Analyze commits and provide statistics |
Release Notes MCP Server_configure_template | Configure a custom template for release notes |
Tavily MCP Server_tavily-search | A powerful web search tool that provides comprehensive, real-time results using Tavily's AI search engine. Returns relevant web content with customizable parameters for result count, content type, and domain filtering. Ideal for gathering current information, news, and detailed web content analysis. |
Tavily MCP Server_tavily-extract | A powerful web content extraction tool that retrieves and processes raw content from specified URLs, ideal for data collection, content analysis, and research tasks. |
Code Research MCP Server_search_stackoverflow | Search Stack Overflow for programming questions and answers |
Code Research MCP Server_search_mdn | Search MDN Web Docs for web development documentation |
Code Research MCP Server_search_github | Search GitHub for repositories and code |
Code Research MCP Server_search_npm | Search npm registry for JavaScript packages |
Code Research MCP Server_search_pypi | Search PyPI for Python packages |
Code Research MCP Server_search_all | Search all platforms simultaneously |
Better Auth MCP Server_analyze_project | Analyze project structure and dependencies to recommend Better-Auth setup approach |
Better Auth MCP Server_setup_better_auth | Install and configure Better-Auth in the project |
Better Auth MCP Server_analyze_current_auth | Detect and analyze existing auth.js/next-auth implementation |
Better Auth MCP Server_generate_migration_plan | Create step-by-step migration plan from existing auth to Better-Auth |
Better Auth MCP Server_test_auth_flows | Test authentication workflows |
Better Auth MCP Server_test_security | Run security tests on Better-Auth setup |
Better Auth MCP Server_analyze_logs | Analyze Better-Auth logs for issues |
Better Auth MCP Server_monitor_auth_flows | Real-time monitoring of authentication processes |
DeepSeek-Claude MCP Server_reason | |
Trello MCP Server_get_boards | Get all boards for the authenticated user |
Trello MCP Server_get_lists | Get all lists in a board |
Trello MCP Server_get_cards | Get cards from a board or specific list |
Trello MCP Server_get_card_details | Get detailed information about a specific card |
Trello MCP Server_update_card | Update properties of a specific card |
IaC Memory MCP Server_get_ansible_collection_info | Retrieve comprehensive information about an Ansible collection |
IaC Memory MCP Server_list_provider_resources | List all resources associated with a specific Terraform provider |
IaC Memory MCP Server_get_terraform_provider_info | Retrieve comprehensive information about a Terraform provider |
IaC Memory MCP Server_list_terraform_providers | List all cached Terraform providers with basic metadata |
IaC Memory MCP Server_get_provider_version_history | Retrieve version history for a specific Terraform provider |
IaC Memory MCP Server_get_terraform_resource_info | Retrieve comprehensive information about a Terraform resource including schema and documentation |
IaC Memory MCP Server_list_ansible_collections | List all cached Ansible collections with basic metadata |
IaC Memory MCP Server_get_collection_version_history | Retrieve version history for a specific Ansible collection |
IaC Memory MCP Server_get_ansible_module_info | Retrieve comprehensive information about an Ansible module including schema and documentation |
IaC Memory MCP Server_get_resource_version_compatibility | Check resource compatibility across provider versions |
IaC Memory MCP Server_add_terraform_provider | Add a new Terraform provider to the memory store with version and documentation information |
IaC Memory MCP Server_update_provider_version | Update an existing Terraform provider's version information and documentation links |
IaC Memory MCP Server_add_terraform_resource | Add a new Terraform resource definition with its schema and version information |
IaC Memory MCP Server_update_resource_schema | Update an existing Terraform resource's schema and related information |
IaC Memory MCP Server_add_ansible_collection | Add a new Ansible collection to the memory store with version and documentation information |
IaC Memory MCP Server_update_collection_version | Update an existing Ansible collection's version information and documentation links |
IaC Memory MCP Server_add_ansible_module | Add a new Ansible module definition with its schema and version information |
IaC Memory MCP Server_update_module_version | Update an existing Ansible module's schema and related information |
IaC Memory MCP Server_get_module_version_compatibility | Check module compatibility across collection versions |
IaC Memory MCP Server_create_entity | Create a new entity in the knowledge graph with optional initial observations |
IaC Memory MCP Server_update_entity | Update an existing entity's properties and add new observations |
IaC Memory MCP Server_delete_entity | Remove an entity and its relationships from the knowledge graph |
IaC Memory MCP Server_view_relationships | Retrieve all relationships and observations for a specific entity |
Browser Use Server_screenshot | Take a screenshot of a webpage |
Browser Use Server_get_html | Get the HTML content of a webpage |
Browser Use Server_execute_js | Execute JavaScript code on a webpage |
Browser Use Server_get_console_logs | Get the console logs of a webpage |
Skrape MCP Server_get_markdown | Get markdown content from a webpage using skrape.ai |
Postman Tool Generation MCP Server_generate_ai_tool | Generate code for an AI agent tool using a Postman collection and request |
MCP Spotify Server_get_artist_top_tracks | Get Spotify catalog information about an artist's top tracks |
MCP Spotify Server_get_artist_related_artists | Get Spotify catalog information about artists similar to a given artist |
MCP Spotify Server_get_access_token | Get a valid Spotify access token for API requests |
MCP Spotify Server_search | Search for tracks, albums, artists, or playlists |
MCP Spotify Server_get_artist | Get Spotify catalog information for an artist |
MCP Spotify Server_get_multiple_artists | Get Spotify catalog information for multiple artists |
MCP Spotify Server_get_artist_albums | Get Spotify catalog information about an artist's albums |
MCP Spotify Server_get_album | Get Spotify catalog information for an album |
MCP Spotify Server_get_album_tracks | Get Spotify catalog information for an album's tracks |
MCP Spotify Server_get_multiple_albums | Get Spotify catalog information for multiple albums |
MCP Spotify Server_get_track | Get Spotify catalog information for a track |
MCP Spotify Server_get_available_genres | Get a list of available genres for recommendations |
MCP Spotify Server_get_new_releases | Get a list of new album releases featured in Spotify |
MCP Spotify Server_get_recommendations | Get track recommendations based on seed tracks, artists, or genres |
MCP Spotify Server_get_audiobook | Get Spotify catalog information for an audiobook |
MCP Spotify Server_get_multiple_audiobooks | Get Spotify catalog information for multiple audiobooks |
MCP Spotify Server_get_audiobook_chapters | Get Spotify catalog information about an audiobook's chapters |
MCP Spotify Server_get_playlist | Get a playlist owned by a Spotify user |
MCP Spotify Server_get_playlist_tracks | Get full details of the tracks of a playlist |
MCP Spotify Server_get_playlist_items | Get full details of the items of a playlist |
MCP Spotify Server_modify_playlist | Change a playlist's name and public/private state |
MCP Spotify Server_get_current_user_playlists | Get a list of the playlists owned or followed by the current Spotify user |
MCP Spotify Server_add_tracks_to_playlist | Add one or more tracks to a playlist |
MCP Spotify Server_remove_tracks_from_playlist | Remove one or more tracks from a playlist |
MCP Spotify Server_get_featured_playlists | Get a list of Spotify featured playlists |
MCP Spotify Server_get_category_playlists | Get a list of Spotify playlists tagged with a particular category |
Zotero MCP Server_zotero_item_metadata | Get metadata information about a specific Zotero item, given the item key. |
Zotero MCP Server_zotero_item_fulltext | Get the full text content of a Zotero item, given the item key of a parent item or specific attachment. |
Zotero MCP Server_zotero_search_items | Search for items in your Zotero library, given a query string, query mode (titleCreatorYear or everything), and optional tag search (supports boolean searches). Returned results can be looked up with zotero_get_fulltext or zotero_get_metadata. |
Modes MCP Server_list_modes | List all custom modes |
Modes MCP Server_get_mode | Get details of a specific mode |
Modes MCP Server_create_mode | Create a new custom mode |
Modes MCP Server_update_mode | Update an existing custom mode |
Modes MCP Server_delete_mode | Delete a custom mode |
Modes MCP Server_validate_mode | Validate a mode configuration without saving it |
Brave Search MCP Server_brave_web_search | Execute web search using Brave Search API with improved results |
Brave Search MCP Server_brave_local_search | Search for local businesses and places |
Waldur MCP Server_query | Run a read-only SQL query |
Waldur MCP Server_list_customers | List all customers |
Waldur MCP Server_list_projects | List all projects |
Waldur MCP Server_list_resources | List all resources |
Waldur MCP Server_list_invoices | List all invoices |
Waldur MCP Server_list_offerings | List all offerings |
Waldur MCP Server_create_invitation | Invite users to project or organization by email Args: scope_type: Whether to invite users to organization or project scope_name: Name of the organization or project to invite users to role: Role to assign to invited users emails: List of email addresses to invite extra_invitation_text: Custom message to include in the invitation |
Shopify MCP Server_get-products-by-collection | Get products from a specific collection |
Shopify MCP Server_get-products-by-ids | Get products by their IDs |
Shopify MCP Server_get-variants-by-ids | Get product variants by their IDs |
Shopify MCP Server_get-products | Get all products or search by title |
Shopify MCP Server_get-customers | Get shopify customers with pagination support |
Shopify MCP Server_tag-customer | Add tags to a customer |
Shopify MCP Server_get-orders | Get shopify orders with advanced filtering and sorting |
Shopify MCP Server_get-order | Get a single order by ID |
Shopify MCP Server_create-discount | Create a basic discount code |
Shopify MCP Server_create-draft-order | Create a draft order |
Shopify MCP Server_complete-draft-order | Complete a draft order |
Shopify MCP Server_get-collections | Get all collections |
Shopify MCP Server_get-shop | Get shop details |
Shopify MCP Server_get-shop-details | Get extended shop details including shipping countries |
Shopify MCP Server_manage-webhook | Subscribe, find, or unsubscribe webhooks |
MCP-researcher Server_chat_perplexity | Maintains ongoing conversations with Perplexity AI. Creates new chats or continues existing ones with full history context. |
MCP-researcher Server_search | Perform a general search query to get comprehensive information on any topic |
MCP-researcher Server_get_documentation | Get documentation and usage examples for a specific technology, library, or API |
MCP-researcher Server_find_apis | Find and evaluate APIs that could be integrated into a project |
MCP-researcher Server_check_deprecated_code | Check if code or dependencies might be using deprecated features |
Mentor MCP Server_second_opinion | Provides a second opinion on a user's request by analyzing it with an LLM and listing critical considerations. |
Mentor MCP Server_code_review | Provides a code review for a given file or code snippet, focusing on potential bugs, style issues, performance bottlenecks, and security vulnerabilities. |
Mentor MCP Server_design_critique | Offers a critique of a design document, UI/UX mockup, or architectural diagram, focusing on usability, aesthetics, consistency, accessibility, and potential design flaws. |
Mentor MCP Server_writing_feedback | Provides feedback on a piece of writing, such as an essay, article, or technical documentation, focusing on clarity, grammar, style, structure, and overall effectiveness. |
Mentor MCP Server_brainstorm_enhancements | Generates creative ideas for improving a given concept, product, or feature, focusing on innovation, feasibility, and user value. |
Modes MCP Server_list_modes | List all custom modes |
Modes MCP Server_get_mode | Get details of a specific mode |
Modes MCP Server_create_mode | Create a new custom mode |
Modes MCP Server_update_mode | Update an existing custom mode |
Modes MCP Server_delete_mode | Delete a custom mode |
Modes MCP Server_validate_mode | Validate a mode configuration without saving it |
RAT MCP Server_generate_response | Generate a response using DeepSeek's reasoning and Claude's response generation through OpenRouter. |
RAT MCP Server_check_response_status | Check the status of a response generation task |
MCP Inception MCP Server_execute_map_reduce_mcp_client | Process multiple items in parallel then sequentially reduce the results to a single output. |
MCP Inception MCP Server_execute_mcp_client | Offload certain tasks to AI. Used for research purposes, do not use for code editing or anything code related. Only used to fetch data. |
MCP Inception MCP Server_execute_parallel_mcp_client | Execute multiple AI tasks in parallel, with responses in JSON key-value pairs. |
MCP Server for eSignatures_create_contract | Creates a new contract. The contract can be a draft which the user can customize/send, or the contract can be sent instantly. So called 'signature fields' like Name/Date/signature-line must be left out, they are all handled automatically. Contract owners can customize the content by replacing {{placeholder fields}} inside the content, and the signers can fill in Signer fields when they sign the contract. |
MCP Server for eSignatures_query_contract | Responds with the contract details, contract_id, status, final PDF url if present, title, labels, metadata, expiry time if present, and signer details with all signer events (signer events are included only for recent contracts, with rate limiting). |
MCP Server for eSignatures_withdraw_contract | Withdraws a sent contract. |
MCP Server for eSignatures_delete_contract | Deletes a contract. The contract can only be deleted if it's a test contract or a draft contract. |
MCP Server for eSignatures_list_recent_contracts | Returns the the details of the latest 100 contracts. |
MCP Server for eSignatures_create_template | Creates a reusable contract template for contracts to be based on. |
MCP Server for eSignatures_update_template | Updates the title, labels or the content of a contract template. |
MCP Server for eSignatures_remove_template_collaborator | Removes the template collaborator |
MCP Server for eSignatures_list_template_collaborators | Returns the list of template collaborators, including their GUID, name, email, and the HTTPS link for editing the template |
MCP Server for eSignatures_query_template | Responds with the template details, template_id, title, labels, created_at, list of the Placeholder fields in the template, list of Signer fields int he template, and the full content inside document_elements |
MCP Server for eSignatures_delete_template | Deletes a contract template. |
MCP Server for eSignatures_list_templates | Lists the templates. |
MCP Server for eSignatures_add_template_collaborator | Creates a HTTPS link for editing a contract template; sends an invitation email if an email is provided.. |
BlueSky MCP Server_bluesky_get_profile | Get a user's profile information |
BlueSky MCP Server_bluesky_get_posts | Get recent posts from a user |
BlueSky MCP Server_bluesky_search_posts | Search for posts on Bluesky |
BlueSky MCP Server_bluesky_get_follows | Get a list of accounts the user follows |
BlueSky MCP Server_bluesky_get_followers | Get a list of accounts following the user |
BlueSky MCP Server_bluesky_get_liked_posts | Get a list of posts liked by the user |
BlueSky MCP Server_bluesky_get_personal_feed | Get your personalized Bluesky feed |
BlueSky MCP Server_bluesky_search_profiles | Search for Bluesky profiles |
Toolkit MCP Server_checkConnectivity | Test TCP connectivity to a host and port |
Toolkit MCP Server_getCurrentTime | Get current time formatted with Intl.DateTimeFormat |
Toolkit MCP Server_getSystemInfo | Get system information using Node.js os module |
Toolkit MCP Server_getLoadAverage | Get system load average for 1, 5, and 15 minutes |
Toolkit MCP Server_getNetworkInterfaces | Get network interface information |
Toolkit MCP Server_getPublicIP | Get public IP address using ip-api.com |
Toolkit MCP Server_pingHost | Ping a host using system ping command |
Toolkit MCP Server_traceroute | Perform traceroute to a host |
Toolkit MCP Server_geolocate | Get geolocation information for an IP address or domain |
Toolkit MCP Server_clearGeoCache | Clear the geolocation cache |
Toolkit MCP Server_generateUUID | Generate a random UUID using crypto.randomUUID() |
Toolkit MCP Server_generateQRCode | Generate a QR code from input data |
Toolkit MCP Server_convertTimezone | Convert date/time between timezones using Luxon |
Toolkit MCP Server_listTimezones | List all available IANA timezones |
Toolkit MCP Server_hashData | Hash input data using Node.js crypto module |
Toolkit MCP Server_compareHashes | Compare two hashes in constant time |
mcp-pyodide_read-image | Read an image from a mounted directory |
mcp-pyodide_execute-python | Execute Python code using Pyodide with output capture. When generating images, they will be automatically saved to the output directory instead of being displayed. Images can be accessed from the saved file paths that will be included in the output. |
mcp-pyodide_install-python-packages | Install Python packages using Pyodide |
mcp-pyodide_get-mount-points | List mounted directories |
mcp-pyodide_list-mounted-directory | List contents of a mounted directory |
Kobold MCP Server_kobold_max_context_length | Get current max context length setting |
Kobold MCP Server_kobold_max_length | Get current max length setting |
Kobold MCP Server_kobold_generate | Generate text with KoboldAI |
Kobold MCP Server_kobold_model_info | Get current model information |
Kobold MCP Server_kobold_version | Get KoboldAI version information |
Kobold MCP Server_kobold_perf_info | Get performance information |
Kobold MCP Server_kobold_token_count | Count tokens in text |
Kobold MCP Server_kobold_detokenize | Convert token IDs to text |
Kobold MCP Server_kobold_transcribe | Transcribe audio using Whisper |
Kobold MCP Server_kobold_web_search | Search the web via DuckDuckGo |
Kobold MCP Server_kobold_tts | Generate text-to-speech audio |
Kobold MCP Server_kobold_abort | Abort the currently ongoing generation |
Kobold MCP Server_kobold_last_logprobs | Get token logprobs from the last request |
Kobold MCP Server_kobold_sd_models | List available Stable Diffusion models |
Kobold MCP Server_kobold_sd_samplers | List available Stable Diffusion samplers |
Kobold MCP Server_kobold_txt2img | Generate image from text prompt |
Kobold MCP Server_kobold_complete | Text completion (OpenAI-compatible) |
Kobold MCP Server_kobold_img2img | Transform existing image using prompt |
Kobold MCP Server_kobold_interrogate | Generate caption for image |
Kobold MCP Server_kobold_chat | Chat completion (OpenAI-compatible) |
Together AI Image MCP Server_generate_image | Generate an image using Together AI |
MCP Chrome Google Search_web-search | Search webpages and get a specific page of results (each page has ~10 results). Optionally filter by site and timeframe. |
MCP Chrome Google Search_web_fetch | Extract readable text content from a webpage using Chrome browser automation. Key Features:
|
MCP Variance Log_log-query | |
MCP Variance Log_read-logs | Retrieve logged conversation variations from the database. |
MCP Variance Log_read_query | Execute a SELECT query on the SQLite database |
MCP Variance Log_write_query | Execute an INSERT, UPDATE, or DELETE query |
MCP Variance Log_create_table | Create a new table in the SQLite database |
MCP Variance Log_list_tables | List all tables in the database |
MCP Variance Log_describe_table | Show structure of a specific table |
MCP Variance Log_append_insight | Add a business insight to the memo |
MCP Browser Use Server_run_browser_agent | Handle run-browser-agent tool calls. |
mcp-server-axiom-js_queryApl | Instructions
ExamplesBasic:
Aggregations:
Search & Parse:
Data Shaping:
Advanced:
Time Operations:
String Operations:
Common Patterns:
|
mcp-server-axiom-js_listDatasets | List all available Axiom datasets |
mcp-server-axiom-js_getDatasetInfoAndSchema | Get dataset info and schema |
mcp-sequentialthinking-tools_sequentialthinking_tools | A detailed tool for dynamic and reflective problem-solving through thoughts. This tool helps analyze problems through a flexible thinking process that can adapt and evolve. Each thought can build on, question, or revise previous insights as understanding deepens. IMPORTANT: When initializing this tool, you must pass all available tools that you want the sequential thinking process to be able to use. The tool will analyze these tools and provide recommendations for their use. When to use this tool:
Key features:
Parameters explained:
You should:
|
Julia Documentation MCP Server_get-doc | Get Julia documentation for a package, module, type, function, or method |
Julia Documentation MCP Server_list-package | List available symbols in a Julia package or module |
Julia Documentation MCP Server_explore-project | Explore a Julia project's structure and dependencies |
Julia Documentation MCP Server_get-source | Get Julia source code for a function, type, or method |
Linear MCP Server_create_issue | Create a new Linear issue with optional parent linking. Supports self-assignment using "me" as assigneeId. |
Linear MCP Server_update_issue | Update an existing Linear issue. Supports self-assignment using "me" as assigneeId. |
Linear MCP Server_get_issue | Get detailed information about a specific Linear issue including optional relationships and cleaned content |
Linear MCP Server_search_issues | Search for Linear issues using a query string and advanced filters. Supports filtering by assignee, creator, and project. Examples: 1. Find your assigned issues: {query: "", filter: {assignedTo: "me"}}, 2. Find issues you created: {query: "", filter: {createdBy: "me"}}, 3. Find issues assigned to specific user: {query: "", filter: {assignedTo: "user-id-123"}}, 4. Find issues in a specific project: {query: "bug", projectId: "project-123"}, 5. Find issues by project name: {query: "feature", projectName: "Website Redesign"} |
Linear MCP Server_get_teams | Get a list of Linear teams with optional name/key filtering |
Linear MCP Server_create_comment | Create a new comment on a Linear issue |
Linear MCP Server_delete_issue | Delete an existing Linear issue |
Linear MCP Server_get_projects | Get a list of Linear projects with optional name filtering and pagination |
Linear MCP Server_get_project_updates | Get project updates for a given project ID with optional filtering parameters |
ESA MCP Server_search_esa_posts | Search posts in esa.io. Response is paginated. For efficient search, you can use customized queries like the following: keyword for partial match, "keyword" for exact match, keyword1 keyword2 for AND match, keyword1 OR keyword2 for OR match, -keyword for excluding keywords, title:keyword for title match, wip:true or wip:false for WIP posts, kind:stock or kind:flow for kind match, category:category_name for partial match with category name, in:category_name for prefix match with category name, on:category_name for exact match with category name, body:keyword for body match, tag:tag_name or tag case_sensitive:true for tag match, user:screen_name for post author's screen name, updated_by:screen_name for post updater's screen name, comment:keyword for partial match with comments, starred:true or starred:false for starred posts, watched:true or watched:false for watched posts, watched_by:screen_name for screen name of members watching the post, sharing:true or sharing:false for shared posts, stars:>3 for posts with more than 3 stars, watches:>3 for posts with more than 3 watches, comments:>3 for posts with more than 3 comments, done:>=3 for posts with 3 or more done items, undone:>=3 for posts with 3 or more undone items, created:>YYYY-MM-DD for filtering by creation date, updated:>YYYY-MM-DD for filtering by update date |
ESA MCP Server_read_esa_post | Read a post in esa.io. |
ESA MCP Server_read_esa_multiple_posts | Read multiple posts in esa.io. |
Obsidian MCP Server_obsidian_list_files_in_vault | Lists all files and directories in the root directory of your Obsidian vault. Returns a hierarchical structure of files and folders, including metadata like file type. |
Obsidian MCP Server_obsidian_list_files_in_dir | Lists all files and directories that exist in a specific Obsidian directory. Returns a hierarchical structure showing files, folders, and their relationships. Useful for exploring vault organization and finding specific files. |
Obsidian MCP Server_obsidian_get_file_contents | Return the content of a single file in your vault. Supports markdown files, text files, and other readable formats. Returns the raw content including any YAML frontmatter. |
Obsidian MCP Server_obsidian_find_in_file | Full-text search across all files in the vault. Returns matching files with surrounding context for each match. Useful for finding specific content, references, or patterns across notes. |
Obsidian MCP Server_obsidian_append_content | Append content to a new or existing file in the vault. |
Obsidian MCP Server_obsidian_patch_content | Update the entire content of an existing note or create a new one. |
Obsidian MCP Server_obsidian_complex_search | Advanced search functionality using JsonLogic queries. Enables complex file filtering based on paths, metadata, modification times, and content patterns. Supports logical operations, date comparisons, and pattern matching. |
Obsidian MCP Server_obsidian_get_properties | Get properties (title, tags, status, etc.) from an Obsidian note's YAML frontmatter. Returns all available properties including custom fields. |
Obsidian MCP Server_obsidian_update_properties | Update properties in an Obsidian note's YAML frontmatter. Intelligently merges arrays (tags, type, status), handles custom fields, and automatically manages timestamps (created by Obsidian, modified by MCP server). Existing properties not included in the update are preserved. |
Jina.ai Grounding MCP Server_ground_statement | Ground a statement using real-time web search results to check factuality. When providing URLs via the references parameter, ensure they are publicly accessible and contain relevant information about the statement. If the URLs do not contain the necessary information, try removing the URL restrictions to search the entire web. |
EOL MCP Server_check_version | Check EOL status and support information for software versions |
EOL MCP Server_check_cve | Scan for known security vulnerabilities and support status |
EOL MCP Server_list_products | Browse or search available software products |
EOL MCP Server_compare_versions | Compare versions and get detailed upgrade analysis |
EOL MCP Server_get_all_details | Get comprehensive lifecycle details for all versions of a product |
Azure DevOps MCP Server for Cline_update_wiki_page | Create or update a wiki page |
Azure DevOps MCP Server for Cline_list_projects | List all projects in the Azure DevOps organization |
Azure DevOps MCP Server for Cline_get_work_item | Get work items by IDs |
Azure DevOps MCP Server for Cline_list_work_items | List work items from a board |
Azure DevOps MCP Server for Cline_create_work_item | Create a new work item using JSON patch operations |
Azure DevOps MCP Server for Cline_update_work_item | Update an existing work item using JSON patch operations |
Azure DevOps MCP Server for Cline_get_boards | List available boards in the project |
Azure DevOps MCP Server for Cline_get_wikis | List all wikis in the project |
Azure DevOps MCP Server for Cline_get_wiki_page | Get a wiki page by path |
Azure DevOps MCP Server for Cline_create_wiki | Create a new wiki |
Azure DevOps MCP Server for Cline_list_pipelines | List all pipelines in the project |
Azure DevOps MCP Server for Cline_trigger_pipeline | Trigger a pipeline run |
Azure DevOps MCP Server for Cline_list_pull_requests | List all pull requests in the project |
Azure DevOps MCP Server for Cline_create_pull_request | Create a new pull request |
Azure DevOps MCP Server for Cline_update_pull_request | Update an existing pull request |
MCP JinaAI Search Server_search | Search the web and get clean, LLM-friendly content using Jina.ai Reader. Returns top 5 results with URLs and clean content. |
MCP Puppeteer Linux Server_puppeteer_navigate | Navigate to a URL |
MCP Puppeteer Linux Server_puppeteer_screenshot | Take a screenshot of the current page or a specific element |
MCP Puppeteer Linux Server_puppeteer_click | Click an element on the page |
MCP Puppeteer Linux Server_puppeteer_fill | Fill out an input field |
MCP Puppeteer Linux Server_puppeteer_select | Select an element on the page with Select tag |
MCP Puppeteer Linux Server_puppeteer_hover | Hover an element on the page |
MCP Puppeteer Linux Server_puppeteer_evaluate | Execute JavaScript in the browser console |
mcp-wsl-exec_execute_command | Execute a command in WSL |
mcp-wsl-exec_confirm_command | Confirm execution of a dangerous command |
AppTweak MCP Server_search_app | Search for an app by name and platform (ios/android) |
AppTweak MCP Server_get_app_details | Get detailed information about an app by ID |
AppTweak MCP Server_analyze_top_keywords | Get keyword suggestions sorted by score (keyword quality), volume (search popularity), or rank (ranking difficulty) |
AppTweak MCP Server_analyze_reviews | Analyze app reviews and ratings to extract user satisfaction insights |
MCP Webcam Server_capture | Gets the latest picture from the webcam. You can use this if the human asks questions about their immediate environment, if you want to see the human or to examine an object they may be referring to or showing you. |
MCP Webcam Server_screenshot | Gets a screenshot of the current screen or window |
MCP Perplexity Search_chat_completion | Generate chat completions using the Perplexity API |
Vilnius Transport MCP Server_find_stops | Search for public transport stops by name |
Vilnius Transport MCP Server_find_closest_stop | Find the closest public transport stop to given coordinates |
Starknet MCP Server_get_block | Get a block from the Starknet blockchain |
tavily-search-mcp-server_tavily_search | Performs a web search using the Tavily Search API, optimized for LLMs. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports search depth, topic selection, time range filtering, and domain inclusion/exclusion. |
mcp-tung-shing_get-tung-shing | Get the daily almanac from Tung Shing |
MCP Server Fetch TypeScript_get_raw_text | Retrieves raw text content directly from a URL without browser rendering. Ideal for structured data formats like JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to the source content is needed without processing dynamic elements. |
MCP Server Fetch TypeScript_get_rendered_html | Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete. |
MCP Server Fetch TypeScript_get_markdown | Converts web page content to well-formatted Markdown, preserving structural elements like tables and definition lists. Recommended as the default tool for web content extraction when a clean, readable text format is needed while maintaining document structure. |
MCP Server Fetch TypeScript_get_markdown_summary | Extracts and converts the main content area of a web page to Markdown format, automatically removing navigation menus, headers, footers, and other peripheral content. Perfect for capturing the core content of articles, blog posts, or documentation pages. |
MCP Server Fetch Python_get-raw-text | Extracts raw text content directly from URLs without browser rendering. Ideal for structured data formats like JSON, XML, CSV, TSV, or plain text files. Best used when fast, direct access to the source content is needed without processing dynamic elements. |
MCP Server Fetch Python_get-rendered-html | Fetches fully rendered HTML content using a headless browser, including JavaScript-generated content. Essential for modern web applications, single-page applications (SPAs), or any content that requires client-side rendering to be complete. |
MCP Server Fetch Python_get-markdown | Converts web page content to well-formatted Markdown, preserving structural elements like tables and definition lists. Recommended as the default tool for web content extraction when a clean, readable text format is needed while maintaining document structure. |
MCP Server Fetch Python_get-markdown-from-media | Performs AI-powered content extraction from media files (images and videos) and converts the results to Markdown format. Specialized tool for visual content analysis that utilizes computer vision and OCR capabilities to generate descriptive text from media sources. |
Penrose MCP Server_create_domain | Create domain-specific language (DSL) definitions |
Penrose MCP Server_create_substance | Define mathematical objects and relationships |
Penrose MCP Server_create_style | Define visual representation rules |
Penrose MCP Server_generate_diagram | Generate diagram from domain/substance/style |
Brev_get_instance_types | Get available instances types for a cloud provider |
Brev_create_workspace | Create a workspace from an instance type and cloud provider |
Steel MCP Server_navigate | Navigate to a specified URL |
Steel MCP Server_search | Perform a Google search by navigating to https://www.google.com/search?q=encodedQuery using the provided query text. |
Steel MCP Server_click | Click an element on the page specified by its numbered label from the annotated screenshot |
Steel MCP Server_type | Type text into an input field specified by its numbered label from the annotated screenshot. Optionally replace existing text first. |
Steel MCP Server_scroll_down | Scroll down the page by a pixel amount - if no pixels are specified, scrolls down one page |
Steel MCP Server_scroll_up | Scroll up the page by a pixel amount - if no pixels are specified, scrolls up one page |
Steel MCP Server_go_back | Go back to the previous page in the browser history |
Steel MCP Server_wait | Use this tool when a page appears to be loading or not fully rendered. Common scenarios include: when elements are missing from a screenshot that should be there, when a page looks incomplete or broken, when dynamic content is still loading, or when a previous action (like clicking a button) hasn't fully processed yet. Waits for a specified number of seconds (up to 10) to allow the page to finish loading or rendering. |
Steel MCP Server_save_unmarked_screenshot | Capture a screenshot without bounding boxes and store it as a resource. Provide a resourceName to identify the screenshot. It's useful for when you want to view a page unobstructed by annotations or the user asks for a screenshot of the page. |
LlamaCloud MCP Server_get_information | Get information from your knowledge base to answer questions. |
Folderr_set_api_token | Set an API token for authentication (alternative to login) |
Folderr_login | Login to Folderr with email and password |
Folderr_list_assistants | List all available assistants |
Folderr_ask_assistant | Ask a question to a specific assistant |
Folderr_list_workflows | List all available workflows |
Folderr_get_workflow_inputs | Get the required inputs for a workflow |
Folderr_execute_workflow | Execute a workflow with the required inputs |
Eyevinn Open Source Cloud MCP Server_osc_create_db | Create a new database instance in Eyevinn Open Source Cloud |
Eyevinn Open Source Cloud MCP Server_osc_create_bucket | Create an S3 compatible bucket in Eyevinn Open Source Cloud |
Eyevinn Open Source Cloud MCP Server_osc_create_vod | Create a VOD package using a VOD pipeline in Eyevinn Open Source Cloud |
Eyevinn Open Source Cloud MCP Server_osc_create_vod_pipeline | Create a VOD pipeline in Eyevinn Open Source Cloud |
Eyevinn Open Source Cloud MCP Server_osc_remove_vod_pipeline | Remove a VOD pipeline in Eyevinn Open Source Cloud |
Upstash MCP Server_redis_database_create_new | Create a new Upstash redis database. NOTE: Ask user for the region and name of the database. NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed. |
Upstash MCP Server_redis_database_delete | Delete an Upstash redis database. |
Upstash MCP Server_redis_database_list_databases | List all Upstash redis databases. Only their names and ids. NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed. |
Upstash MCP Server_timestamps_to_date | Use this tool to convert a timestamp to a human-readable date |
Upstash MCP Server_redis_database_run_multiple_redis_commands | Run multiple Redis commands on a specific Upstash redis database |
Upstash MCP Server_redis_database_run_single_redis_command | Run a single Redis command on a specific Upstash redis database. NOTE: For discovery, use SCAN over KEYS. Use TYPE to get the type of a key. NOTE: SCAN cursor [MATCH pattern] [COUNT count] [TYPE type] |
Upstash MCP Server_redis_database_get_details | Get further details of a specific Upstash redis database. Includes all details of the database including usage statistics. db_disk_threshold: Total disk usage limit. db_memory_threshold: Maximum memory usage. db_daily_bandwidth_limit: Maximum daily network bandwidth usage. db_request_limit: Total number of commands allowed. All sizes are in bytes NOTE: Don't show the database ID from the response to the user unless explicitly asked or needed. |
Upstash MCP Server_redis_database_update_regions | Update the read regions of an Upstash redis database. |
Upstash MCP Server_redis_database_reset_password | Reset the password of an Upstash redis database. |
Upstash MCP Server_redis_database_get_usage_last_5_days | Get PRECISE command count and bandwidth usage statistics of an Upstash redis database over the last 5 days. This is a precise stat, not an average. NOTE: Ask user first if they want to see stats for each database seperately or just for one. |
Upstash MCP Server_redis_database_get_stats | Get SAMPLED usage statistics of an Upstash redis database over a period of time (1h, 3h, 12h, 1d, 3d, 7d). Use this to check for peak usages and latency problems. Includes: read_latency_mean, write_latency_mean, keyspace, throughput (cmds/sec), diskusage NOTE: If the user does not specify which stat to get, use throughput as default. |
Upstash MCP Server_redis_database_create_backup | Create a backup of a specific Upstash redis database. NOTE: Ask user to choose a name for the backup |
Upstash MCP Server_redis_database_delete_backup | Delete a backup of a specific Upstash redis database. |
Upstash MCP Server_redis_database_restore_backup | Restore a backup of a specific Upstash redis database. A backup can only be restored to the same database it was created from. |
Upstash MCP Server_redis_database_list_backups | List all backups of a specific Upstash redis database. |
Upstash MCP Server_redis_database_set_daily_backup | Enable or disable daily backups for a specific Upstash redis database. |
Genkit MCP_echo | Echoes back the input |
Genkit MCP_add | Adds two numbers |
Genkit MCP_printEnv | Prints all environment variables, helpful for debugging MCP server configuration |
Genkit MCP_longRunningOperation | Demonstrates a long running operation with progress updates |
Genkit MCP_sampleLLM | Samples from an LLM using MCP's sampling feature |
Genkit MCP_getTinyImage | Returns the MCP_TINY_IMAGE |
mcp-server-motherduck_initialize-connection | Create a connection to either a local DuckDB or MotherDuck and retrieve available databases |
mcp-server-motherduck_read-schemas | Get table schemas from a specific DuckDB/MotherDuck database |
mcp-server-motherduck_execute-query | Execute a query on the MotherDuck (DuckDB) database |
Memory Store MCP Server_search_web | Search the web using Google |
Daytona MCP Python Interpreter_python_interpreter | Execute Python code in a Daytona workspace |
MCP Svelte Docs Server_search_docs | Search Svelte documentation using specific technical terms and concepts. Returns relevant documentation sections with context. Query Guidelines:
Example Queries by Category:
Query Pattern Examples: "How do I manage state?" "state management runes" "What are lifecycle hooks?" "component lifecycle" "How do I handle events?" "event handling svelte5" "How do I create dynamic routes?" "route parameters sveltekit" |
MCP Svelte Docs Server_get_next_chunk | Retrieve subsequent chunks of large documents |
Google Custom Search Engine MCP Server_google_search | Search the custom search engine using the search term. Regular query arguments can also be used, like appending site.com or after:2024-04-30. If available and/or requested, the links of the search results should be used in a follow-up request using a different tool to get the full content. Example: "claude.ai features site.com after:2024-04-30" |
MCP Server Diff TypeScript_get-unified-diff | Get the difference between two text articles in Unified diff format. |
Bitbucket Server MCP_add_comment | Add a comment to a pull request |
Bitbucket Server MCP_create_pull_request | Create a new pull request |
Bitbucket Server MCP_get_pull_request | Get pull request details |
Bitbucket Server MCP_merge_pull_request | Merge a pull request |
Bitbucket Server MCP_decline_pull_request | Decline a pull request |
Bitbucket Server MCP_get_diff | Get pull request diff |
Bitbucket Server MCP_get_reviews | Get pull request reviews |
MCP Server Diff Python_get-unified-diff | Get the difference between two text articles in Unified diff format. Use this when you want to extract the difference between texts. |
Project Handoffs MCP Server_list_templates | List available templates for next steps, working sessions, and handoffs |
Project Handoffs MCP Server_create_project | Create a new project for tracking AI session handoffs |
Project Handoffs MCP Server_delete_project | Delete a project and all its data |
Project Handoffs MCP Server_create_next_step | Create a new next step in a project |
Project Handoffs MCP Server_start_working_session | Start working on a next step |
Project Handoffs MCP Server_create_handoff | Complete a working session with handoff details |
Project Handoffs MCP Server_get_latest_next_steps | Get open next steps ordered by priority |
Project Handoffs MCP Server_get_next_step_history | Get complete history of a next step including session and handoff |
Markdownify MCP Server_youtube-to-markdown | Convert a YouTube video to markdown, including transcript if available |
Markdownify MCP Server_webpage-to-markdown | Convert a webpage to markdown |
Markdownify MCP Server_xlsx-to-markdown | Convert an XLSX file to markdown |
Markdownify MCP Server_audio-to-markdown | Convert an audio file to markdown, including transcription if possible |
Markdownify MCP Server_bing-search-to-markdown | Convert a Bing search results page to markdown |
Markdownify MCP Server_docx-to-markdown | Convert a DOCX file to markdown |
Markdownify MCP Server_get-markdown-file | Get a markdown file by absolute file path |
Markdownify MCP Server_image-to-markdown | Convert an image to markdown, including metadata and description |
Markdownify MCP Server_pdf-to-markdown | Convert a PDF file to markdown |
Markdownify MCP Server_pptx-to-markdown | Convert a PPTX file to markdown |
Fetch MCP Server_fetch_html | Fetch a website and return the content as HTML |
Fetch MCP Server_fetch_markdown | Fetch a website and return the content as Markdown |
Fetch MCP Server_fetch_txt | Fetch a website, return the content as plain text (no HTML) |
Fetch MCP Server_fetch_json | Fetch a JSON file from a URL |
Super Windows CLI MCP Server_execute_command | Execute a command in the specified shell (powershell, cmd, or gitbash) Example usage (PowerShell): Example usage (CMD): Example usage (Git Bash): |
Super Windows CLI MCP Server_get_command_history | Get the history of executed commands Example usage: Example response: |
Super Windows CLI MCP Server_ssh_execute | Execute a command on a remote host via SSH Example usage: Configuration required in config.json: |
Super Windows CLI MCP Server_ssh_disconnect | Disconnect from an SSH server Example usage: Use this to cleanly close SSH connections when they're no longer needed. |
MCP Server Starter_hello_tool | Hello tool |
SwitchBot MCP Server_list_devices | - |
SwitchBot MCP Server_get_device_status | - |
SwitchBot MCP Server_control_device | - |
MCP JinaAI Reader Server_read_url | Convert any URL to LLM-friendly text using Jina.ai Reader |
Dify MCP Server_antd-component-codegen-mcp-tool | Send a message to Dify chat API for generating antd biz components code |
Test Runner MCP_run_tests | Run tests and capture output |
Xano MCP Server_get_workspaces | Get all available workspaces |
Xano MCP Server_create_table | Create a new table in a workspace |
Xano MCP Server_get_table_content | Get content from a table |
Xano MCP Server_add_table_content | Add content to a table |
Xano MCP Server_update_table_content | Update content in a table |
Xano MCP Server_get_all_tables | Get all tables in a workspace |
Browser-Use MCP Server_run_browser_agent | Handle run-browser-agent tool calls. |
MCP Server for Ticketmaster Events_search_ticketmaster | Search for events, venues, or attractions on Ticketmaster |
MCP Tavily Search Server_tavily_search | Search the web using Tavily Search API, optimized for high-quality, factual results |
MCP Tavily Search Server_tavily_get_search_context | Generate context for RAG applications using Tavily search |
MCP Tavily Search Server_tavily_qna_search | Get direct answers to questions using Tavily search |
MCP Windows Website Downloader Server_download | Download documentation website for RAG indexing |
cooper-hewitt-mcp_search-objects | Search for objects in the Cooper Hewitt collection |
cooper-hewitt-mcp_get-object | Get detailed information about a specific object |
PolyMarket MCP Server_get-market-info | Get detailed information about a specific prediction market |
PolyMarket MCP Server_list-markets | Get a list of prediction markets with optional filters |
PolyMarket MCP Server_get-market-prices | Get current prices and trading information for a market |
PolyMarket MCP Server_get-market-history | Get historical price and volume data for a market |
Textwell MCP Server_write-text | Write text to Textwell application |
Branch Thinking MCP Server_branch-thinking | A tool for managing multiple branches of thought with insights and cross-references. Each thought can:
The system tracks:
Commands:
|
Iaptic MCP Server_customer_list | List customers from your Iaptic account.
|
Iaptic MCP Server_customer_get | Get detailed information about a specific customer.
|
Iaptic MCP Server_customer_add_purchase | Manually associate a customer with a purchase.
|
Iaptic MCP Server_customer_subscription | Get customer's subscription status.
|
Iaptic MCP Server_customer_transactions | Get customer's transaction history.
|
Iaptic MCP Server_purchase_list | List purchases from your Iaptic account.
|
Iaptic MCP Server_purchase_get | Get detailed information about a specific purchase.
|
Iaptic MCP Server_transaction_list | List financial transactions from your Iaptic account.
|
Iaptic MCP Server_transaction_get | Get detailed information about a specific transaction.
|
Iaptic MCP Server_stats_get | Get general transactions, revenue and usage statistics from your Iaptic account.
|
Iaptic MCP Server_stats_app | Get statistics specific to your application.
|
Iaptic MCP Server_stripe_prices | Get available Stripe products and prices.
|
Iaptic MCP Server_event_list | List recent events from your Iaptic account.
|
Iaptic MCP Server_iaptic_switch_app | Switch to a different Iaptic app.
|
Iaptic MCP Server_iaptic_reset_app | Reset to the default Iaptic app.
|
Iaptic MCP Server_iaptic_current_app | Get information about the currently active Iaptic app.
|
Coin Flip MCP Server_flip_coin | Flip a coin with n sides using true randomness from random.org. For 3-sided coins, try creative side names like:
Meta-usage patterns:
Ordinal Meta-patterns:
Default ternary values are -/0/+ |
MCP Starter Server_hello_tool | Hello tool |
Xcode MCP Server_set_projects_base_dir | Set the base directory where Xcode projects are stored |
Xcode MCP Server_set_project_path | Explicitly set the path to the Xcode project to work with |
Xcode MCP Server_get_active_project | Get information about the currently active Xcode project |
Xcode MCP Server_read_file | Read contents of a file in the Xcode project |
Xcode MCP Server_write_file | Write or update contents of a file in the Xcode project |
Xcode MCP Server_analyze_file | Analyze source file for issues and suggestions |
Xcode MCP Server_build_project | Build the current Xcode project |
Xcode MCP Server_run_tests | Run tests for the current Xcode project |
Xcode MCP Server_list_project_files | List all files in an Xcode project |
Anti-Bullshit MCP Server_analyze_claim | Analyze a claim using multiple epistemological frameworks and suggest validation steps |
Anti-Bullshit MCP Server_validate_sources | Validate sources and evidence using configured framework |
Anti-Bullshit MCP Server_check_manipulation | Check for manipulation tactics across different cultural contexts |
SystemPrompt MCP Notion Server_systemprompt_list_notion_pages | Lists all accessible Notion pages in your workspace, sorted by last edited time. Returns key metadata including title, URL, and last edited timestamp. |
SystemPrompt MCP Notion Server_systemprompt_list_notion_databases | Lists all accessible Notion databases in your workspace, sorted by last edited time. Returns key metadata including database title, schema, and last edited timestamp. |
SystemPrompt MCP Notion Server_systemprompt_search_notion_pages | Performs a full-text search across all accessible Notion pages using the provided query. Searches through titles, content, and metadata to find relevant matches. |
SystemPrompt MCP Notion Server_systemprompt_search_notion_pages_by_title | Searches specifically for Notion pages with titles matching the provided query. Useful for finding exact or similar title matches when you know the page name. |
SystemPrompt MCP Notion Server_systemprompt_get_notion_page | Retrieves comprehensive details of a specific Notion page, including its content, properties, and metadata. Returns the complete page structure and all nested content blocks. |
SystemPrompt MCP Notion Server_systemprompt_create_notion_page | Creates a rich, comprehensive Notion page that expands upon basic user inputs. Takes simple instructions and content, then generates a detailed, well-structured page with appropriate sections, formatting, and supplementary content. |
SystemPrompt MCP Notion Server_systemprompt_update_notion_page | Updates an existing Notion page with rich, comprehensive content based on user instructions. Takes simple inputs and transforms them into well-structured, detailed page content while preserving existing information. Can enhance, reorganize, or expand the current content while maintaining page integrity. |
SystemPrompt MCP Notion Server_systemprompt_delete_notion_page | Permanently deletes a specified Notion page and all its contents. This action cannot be undone, so use with caution. |
IACR MCP Server_search_papers | Search for papers in the IACR Cryptology ePrint Archive |
IACR MCP Server_get_paper_details | Retrieve details of a specific paper by its ID |
IACR MCP Server_download_paper | Download a paper in PDF or TXT format |
Linear MCP Server_create_issue | Create a new issue in Linear |
Linear MCP Server_list_issues | List issues with optional filters |
Linear MCP Server_update_issue | Update an existing issue |
Linear MCP Server_list_teams | List all teams in the workspace |
Linear MCP Server_list_projects | List all projects |
Linear MCP Server_search_issues | Search for issues using a text query |
Linear MCP Server_get_issue | Get detailed information about a specific issue |
mcp-memory-libsql_create_entities | Create new entities with observations and optional embeddings |
mcp-memory-libsql_search_nodes | Search for entities and their relations using text or vector similarity |
mcp-memory-libsql_read_graph | Get recent entities and their relations |
mcp-memory-libsql_create_relations | Create relations between entities |
mcp-memory-libsql_delete_entity | Delete an entity and all its associated data (observations and relations) |
mcp-memory-libsql_delete_relation | Delete a specific relation between entities |
n8n Workflow Builder MCP Server_delete_workflow | Delete a workflow by ID |
n8n Workflow Builder MCP Server_activate_workflow | Activate a workflow by ID |
n8n Workflow Builder MCP Server_deactivate_workflow | Deactivate a workflow by ID |
n8n Workflow Builder MCP Server_list_workflows | List all workflows from n8n |
n8n Workflow Builder MCP Server_create_workflow | Create a new workflow in n8n |
n8n Workflow Builder MCP Server_get_workflow | Get a workflow by ID |
n8n Workflow Builder MCP Server_update_workflow | Update an existing workflow |
n8n Workflow Builder MCP Server_list_executions | List all executions from n8n with optional filters |
n8n Workflow Builder MCP Server_get_execution | Get details of a specific execution by ID |
n8n Workflow Builder MCP Server_delete_execution | Delete an execution by ID |
MCP Web Research Server_deep_research | Perform deep research on a topic with content extraction and analysis |
MCP Web Research Server_parallel_search | Perform multiple Google searches in parallel |
MCP Web Research Server_visit_page | Visit a webpage and extract its content |
Holaspirit MCP Server_list_tasks | List all tasks in the organization |
Holaspirit MCP Server_list_metrics | List all metrics in the organization |
Holaspirit MCP Server_list_circles | List all circles in the organization |
Holaspirit MCP Server_get_circle | Get details of a specific circle |
Holaspirit MCP Server_list_roles | List all roles in the organization |
Holaspirit MCP Server_get_role | Get details of a specific role |
Holaspirit MCP Server_list_domains | List all domains in the organization |
Holaspirit MCP Server_list_policies | List all policies in the organization |
Holaspirit MCP Server_list_meetings | List all meetings in the organization |
Holaspirit MCP Server_get_meeting | Get details of a specific meeting |
Placid MCP Server_placid_list_templates | Get a list of available Placid templates with optional filtering. Each template includes its title, ID, preview image URL, available layers, and tags. |
Placid MCP Server_placid_generate_image | Generate an image using a template and provided assets |
Placid MCP Server_placid_generate_video | Generate a video using one or more templates and provided assets. Every 10 seconds of video uses 10 credits. |
MCP Notes Server_list-all-notes | Read all stored notes |
MCP Notes Server_update-note | Update an existing note |
MCP Notes Server_delete-note | Delete an existing note |
MCP Notes Server_add-note | Create a new note |
Scrapbox Cosense MCP Server_create_page | |
Scrapbox Cosense MCP Server_get_page | |
Scrapbox Cosense MCP Server_list_pages | |
Scrapbox Cosense MCP Server_search_pages | |
Keboola Explorer MCP Server_get_bucket_metadata | Get detailed information about a specific bucket. |
Keboola Explorer MCP Server_list_bucket_info | List information about all buckets in the project. |
Keboola Explorer MCP Server_list_bucket_tables | List all tables in a specific bucket with their basic information. |
Keboola Explorer MCP Server_get_table_metadata | Get detailed information about a specific table including its DB identifier and column information. |
Keboola Explorer MCP Server_query_table | |
Keboola Explorer MCP Server_list_components | List all available components and their configurations. |
Keboola Explorer MCP Server_list_component_configs | List all configurations for a specific component. |
MCP Terminal Server_execute_command | Execute a command in the local system |
mcp-shell-server_shell_execute | Execute a shell command Allowed commands: grep, find, echo, cat, ls |
MCP Web Browser Server_browse_to | |
MCP Web Browser Server_extract_text_content | |
MCP Web Browser Server_click_element | |
MCP Web Browser Server_get_page_screenshots | |
MCP Web Browser Server_get_page_links | |
MCP Web Browser Server_input_text | |
Project Content Server_latest_project_data | Get latest project data including file names and contents |
Duck Duck MCP_search | Search the web using DuckDuckGo |
MCP Rand_roll_dice | Roll a set of dice using standard dice notation (e.g., "2d6" for two six-sided dice, "3d6+5" for three six-sided dice plus 5) |
MCP Rand_generate_uuid | Generate a random UUID v4 |
MCP Rand_generate_random_number | Generate a random number within a specified range |
MCP Rand_generate_gaussian | Generate a random number following a Gaussian (normal) distribution between 0 and 1 |
MCP Rand_generate_string | Generate a random string with specified length and character set |
MCP Rand_draw_cards | Draw cards from a standard deck of playing cards |
MCP Rand_generate_password | Generate a strong password with a mix of character types. WARNING: While this password is generated locally on your machine, it is recommended to use a dedicated password manager for generating and storing passwords securely. |
MCP2Brave_search_brave_with_summary | Search the web using Brave Search API |
MCP2Brave_brave_search_summary | Brave |
MCP2Brave_get_url_content_direct | Get webpage content directly using HTTP request |
MCP2Brave_url_content | |
MCP2Brave_search_news | Search news using Brave News API |
MCP2Brave_search_news_info | BraveAPI |
MCP TODO Checklist Server_todo_show | Mostra os detalhes de uma lista especfica |
MCP TODO Checklist Server_todo_complete | Marca uma tarefa como concluda |
MCP TODO Checklist Server_todo_create | Cria uma nova lista de tarefas |
MCP TODO Checklist Server_todo_add | Adiciona uma nova tarefa lista |
MCP TODO Checklist Server_todo_list | Lista todas as listas de tarefas |
UseScraper MCP Server_scrape | Scrape content from a webpage using UseScraper API |
iTerm MCP Server_write_to_terminal | Writes text to the active iTerm terminal - often used to run a command in the terminal |
iTerm MCP Server_read_terminal_output | Reads the output from the active iTerm terminal |
iTerm MCP Server_send_control_character | Sends a control character to the active iTerm terminal (e.g., Control-C) |
Code Snippet Server_create_snippet | Create a snippet (specify title, language, and code) |
Code Snippet Server_list_snippets | List snippets (can filter by language or tags) |
Code Snippet Server_delete_snippet | Delete a snippet (specify ID) |
Twitter MCP Server_createList | Create a new Twitter list |
Twitter MCP Server_postTweet | Post a tweet to Twitter |
Twitter MCP Server_addUserToList | Add a user to a Twitter list |
Twitter MCP Server_postTweetWithMedia | Post a tweet with media attachment to Twitter |
Twitter MCP Server_likeTweet | Like a tweet by its ID |
Twitter MCP Server_unlikeTweet | Unlike a previously liked tweet |
Twitter MCP Server_getLikedTweets | Get a list of tweets liked by a user |
Twitter MCP Server_searchTweets | Search for tweets using a query string |
Twitter MCP Server_replyToTweet | Reply to a tweet |
Twitter MCP Server_getUserTimeline | Get recent tweets from a user timeline |
Twitter MCP Server_getTweetById | Get a tweet by its ID |
Twitter MCP Server_getUserInfo | Get information about a Twitter user |
Twitter MCP Server_getTweetsByIds | Get multiple tweets by their IDs |
Twitter MCP Server_retweet | Retweet a tweet by its ID |
Twitter MCP Server_undoRetweet | Undo a retweet by its ID |
Twitter MCP Server_getRetweets | Get a list of retweets of a tweet |
Twitter MCP Server_followUser | Follow a user by their username |
Twitter MCP Server_unfollowUser | Unfollow a user by their username |
Twitter MCP Server_getFollowers | Get followers of a user |
Twitter MCP Server_getFollowing | Get a list of users that a user is following |
Twitter MCP Server_removeUserFromList | Remove a user from a Twitter list |
Twitter MCP Server_getListMembers | Get members of a Twitter list |
Twitter MCP Server_getUserLists | Get lists owned by a user |
Twitter MCP Server_getHashtagAnalytics | Get analytics for a specific hashtag |
Twitter MCP Server_deleteTweet | Delete a tweet by its ID |
Metal MCP Server_search_metal_docs | Search Metal Framework documentation and code examples using natural language queries |
Metal MCP Server_generate_metal_code | Generate Metal Framework code for common tasks |
Sequential Thinking MCP Server_sequential_thinking | |
Sequential Thinking MCP Server_get_thinking_summary | |
Sequential Thinking MCP Server_clear_thinking_history | |
Elasticsearch MCP Server_list_indices | List all indices in the Elasticsearch cluster |
Elasticsearch MCP Server_get_mapping | Get index mapping |
Elasticsearch MCP Server_get_settings | Get index settings |
Elasticsearch MCP Server_search_documents | Search documents in an index with a custom query |
Elasticsearch MCP Server_get_cluster_health | Get cluster health status |
Elasticsearch MCP Server_get_cluster_stats | Get cluster statistics |
Zig MCP Server_optimize_code | Optimize Zig code for better performance |
Zig MCP Server_estimate_compute_units | Estimate computational complexity and resource usage |
Zig MCP Server_generate_code | Generate Zig code from natural language description |
Zig MCP Server_get_recommendations | Get code improvement recommendations and best practices |
mcp-server-chatsum_query_chat_messages | query chat messages with given parameters |
mcp-server-collector_extract-mcp-servers-from-content | Extract MCP Servers from given content |
mcp-server-collector_extract-mcp-servers-from-url | Extract MCP Servers from a URL |
mcp-server-collector_submit-mcp-server | Submit MCP Server to MCP Servers Directory like mcp.so |
Loxo MCP Server_get-activity-types | Get a list of activity types from Loxo |
Loxo MCP Server_spark-search-activity-types | Get a list of activity types from Spark Search |
Loxo MCP Server_get-todays-tasks | Get all tasks and scheduled activities for today |
Loxo MCP Server_get-call-queue | Get the current call queue |
Loxo MCP Server_add-to-call-queue | Add a candidate or contact to the call queue |
Loxo MCP Server_schedule-activity | Schedule a future activity (like a call or meeting) |
Loxo MCP Server_search-candidates | Search for candidates in Loxo with specific criteria |
Loxo MCP Server_get-candidate | Get detailed information about a specific candidate |
Loxo MCP Server_search-jobs | Search for jobs in Loxo |
Loxo MCP Server_get-job | Get detailed information about a specific job |
Loxo MCP Server_add-note | Add a note to a candidate or job |
Loxo MCP Server_log-activity | Log an activity for a candidate or job |
Email Checker MCP Server_verify_email | |
MCP Webscan Server_extract-links | Extract and analyze all hyperlinks from a web page, organizing them into a structured format with URLs, anchor text, and contextual information. Performance-optimized with stream processing and worker threads for efficient handling of large pages. Works with either a direct URL or raw HTML content. Handles relative and absolute URLs properly by supporting an optional base URL parameter. Results can be limited to prevent overwhelming output for link-dense pages. Returns a comprehensive link inventory that includes destination URLs, link text, titles (if available), and whether links are internal or external to the source domain. Useful for site mapping, content analysis, broken link checking, SEO analysis, and as a preparatory step for targeted crawling operations. |
MCP Webscan Server_crawl-site | Crawl a website and return a list of all the URLs found |
MCP Webscan Server_check-links | Check for broken links on a page |
MCP Webscan Server_fetch-page | Fetch a web page and convert it to Markdown |
MCP Webscan Server_find-patterns | Find all links that match a given pattern |
MCP Webscan Server_generate-site-map | Generate a sitemap for a website |
AiDD MCP Server_get_allowed_directory | Get the current working directory that this server is allowed to access. |
AiDD MCP Server_write_file | Create a new file or overwrite an existing file with new content. Use this to save changes, create new files, or update existing ones. Use with caution as it will overwrite existing files without warning. Path must be relative to the allowed directory. Creates parent directories if needed. Example: Path='notes.txt', Content='Meeting notes for project X' |
AiDD MCP Server_update_allowed_directory | Change the working directory that this server is allowed to access. Use this to switch between different projects. |
AiDD MCP Server_create_directory | Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Useful for setting up project structure or organizing files. Only works within the allowed directory. Example: Enter 'src/components' to create nested directories. |
AiDD MCP Server_edit_file | Make line-based edits to a text file. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made. Only works within the allowed directory. Always use dryRun first to preview changes before applying them. |
AiDD MCP Server_list_directory | Get a detailed listing of files and directories in the specified path. This tool is essential for understanding directory structure and finding specific files within a directory. Only works within the allowed directory. Example: Enter 'src' to list contents of the src directory, or '.' for current directory. |
AiDD MCP Server_read_file | Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file. Only works within the allowed directory.Example: Enter 'src/main.py' to read a Python file. |
AiDD MCP Server_read_multiple_files | Read the contents of multiple files simultaneously. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within the allowed directory.Example: Enter ['src/main.py', 'README.md'] to read both files. |
AiDD MCP Server_move_file | Move or rename a file or directory to a new location. This tool can be used to reorganize files and directories. Both source and destination must be within the allowed directory. If the destination already exists, the operation will fail. Parent directories of the destination will be created if they don't exist. Example: source='old.txt', destination='new/path/new.txt' |
AiDD MCP Server_search_files | Search for files and directories matching a pattern. The search is recursive and case-insensitive. Only searches within the allowed directory. Returns paths relative to the allowed directory. Searches in file and directory names, not content. For searching within file contents, use the tree_sitter_map tool which can locate specific code elements like functions and classes. Example: pattern='.py' finds all Python files, pattern='test' finds all items with 'test' in the name. |
AiDD MCP Server_delete_file | Delete a file or empty directory from the file system. Use with caution as this operation cannot be undone. For safety, this tool will not delete non-empty directories. Only works within the allowed directory. Example: path='old_file.txt' removes the specified file. |
AiDD MCP Server_get_file_info | Get detailed information about a file or directory. Returns size, creation time, modification time, access time, type (file/directory), and permissions. All times are in ISO 8601 format. This tool is perfect for understanding file characteristics without reading the actual content. Only works within the allowed directory. Example: path='src/main.py' returns details about main.py |
AiDD MCP Server_directory_tree | Get a recursive tree view of files and directories in the specified path as a JSON structure. Each entry includes 'name', 'type' (file/directory), and 'children' for directories. Files have no children array, while directories always have a children array (which may be empty). The output is formatted with 2-space indentation for readability. Only works within the allowed directory. Useful for understanding project structure. Example: Enter '.' for current directory, or 'src' for a specific directory. |
AiDD MCP Server_execute_code | Execute arbitrary code in various programming languages on the user's local machine within the current working directory. Supported languages: python, javascript, ruby, php, go, rust. Always review the code carefully before execution to prevent unintended consequences. You MUST explicitly show the user the code that will be executed and get his confirmation before using this tool. Examples: - Python: code='print(sum(range(10)))'. - JavaScript: code='console.log(Array.from({length: 5}, (_, i) => i*2))'. - Ruby: code='puts (1..5).reduce(:+)'. |
AiDD MCP Server_execute_shell_script | Execute a shell script (bash/sh) on the user's local machine within the current working directory. This tool can execute shell commands and scripts for system automation and management tasks. It is designed to perform tasks on the user's local environment, such as opening applications, installing packages and more. Always review the script carefully before execution to prevent unintended consequences. You MUST explicitly show the user the script that will be executed and get his confirmation before using this tool. Examples: - script='echo "Current directory:" && pwd'. - script='for i in {1..5}; do echo $i; done'. |
AiDD MCP Server_tree_sitter_map | Build a tree-sitter based structural map of source code files. This tool analyzes code structure to identify classes, functions, and methods. Only analyzes files within the allowed directory. Useful for code analysis and understanding project structure. Example: Enter '.' to analyze all source files in current directory, or 'src' to analyze all files in the src directory. |
AiDD MCP Server_git_init | Initialize a new Git repository. Creates a new Git repository in the specified directory. If the directory doesn't exist, it will be created. Directory must be within the allowed directory. |
AiDD MCP Server_git_status | Shows the working tree status of a git repository. Returns information about staged, unstaged, and untracked files. Repository must be within the allowed directory. |
AiDD MCP Server_git_diff_unstaged | Shows changes in working directory not yet staged for commit. Returns a unified diff format of all unstaged changes. Repository must be within the allowed directory. |
AiDD MCP Server_git_diff_staged | Shows changes staged for commit. Returns a unified diff format of all staged changes. Repository must be within the allowed directory. |
AiDD MCP Server_git_diff | Shows differences between branches or commits. Returns a unified diff format comparing current state with target. Repository must be within the allowed directory. |
AiDD MCP Server_git_commit | Records changes to the repository. Commits all staged changes with the provided message. Repository must be within the allowed directory. |
AiDD MCP Server_git_add | Adds file contents to the staging area. Stages specified files for the next commit. Repository must be within the allowed directory. |
AiDD MCP Server_git_reset | Unstages all staged changes. Removes all files from the staging area. Repository must be within the allowed directory. |
AiDD MCP Server_git_log | Shows the commit logs. Returns information about recent commits including hash, author, date, and message. Repository must be within the allowed directory. |
AiDD MCP Server_git_create_branch | Creates a new branch. Creates a new branch from the specified base branch or current HEAD. Repository must be within the allowed directory. |
AiDD MCP Server_git_checkout | Switches branches. Checks out the specified branch. Repository must be within the allowed directory. |
AiDD MCP Server_git_show | Shows the contents of a commit. Returns detailed information about a specific commit including the changes it introduced. Repository must be within the allowed directory. |
AiDD MCP Server_get_system_info | Get detailed system information including OS, CPU, memory, disk, and network details (such as WiFi network name). This tool provides comprehensive information about the system environment. Also returns the current working directory (allowed directory) of the AiDD MCP server. Useful for system analysis, debugging, environment verification, and workspace management. |
mcp-clickhouse_list_tables | - |
mcp-clickhouse_run_select_query | - |
mcp-clickhouse_list_databases | - |
Replicate MCP Server_search_models | Search for models using semantic search |
Replicate MCP Server_list_models | List available models with optional filtering |
Replicate MCP Server_list_collections | List available model collections |
Replicate MCP Server_get_collection | Get details of a specific collection |
Replicate MCP Server_create_prediction | Create a new prediction using either a model version (for community models) or model name (for official models) |
Replicate MCP Server_cancel_prediction | Cancel a running prediction |
Replicate MCP Server_get_prediction | Get details about a specific prediction |
Replicate MCP Server_list_predictions | List recent predictions |
Replicate MCP Server_get_model | Get details of a specific model including available versions |
Replicate MCP Server_view_image | Display an image in the system's default web browser |
Replicate MCP Server_clear_image_cache | Clear the image viewer cache |
Replicate MCP Server_get_image_cache_stats | Get statistics about the image cache |
Cloudinary MCP Server_upload | Upload media (images/videos) to Cloudinary. For large files, the upload is processed in chunks and returns a streaming response. The uploaded asset will be available at:
|
MCP Browser Tabs Server_get_tabs | Get all open tabs from Google Chrome browser |
MCP Browser Tabs Server_close_tab | Close a specific tab in Google Chrome by window and tab index. When closing multiple tabs, start from the highest index numbers to avoid index shifting. After closing tabs, use get_tabs to confirm the changes. |
Tavily Search MCP Agent_comprehensive_search | |
DynamoDB MCP Server_create_table | Creates a new DynamoDB table with specified configuration |
DynamoDB MCP Server_update_capacity | Updates the provisioned capacity of a table |
DynamoDB MCP Server_put_item | Inserts or replaces an item in a table |
DynamoDB MCP Server_get_item | Retrieves an item from a table by its primary key |
DynamoDB MCP Server_query_table | Queries a table using key conditions and optional filters |
DynamoDB MCP Server_scan_table | Scans an entire table with optional filters |
DynamoDB MCP Server_describe_table | Gets detailed information about a DynamoDB table |
DynamoDB MCP Server_list_tables | Lists all DynamoDB tables in the account |
DynamoDB MCP Server_create_gsi | Creates a global secondary index on a table |
DynamoDB MCP Server_update_gsi | Updates the provisioned capacity of a global secondary index |
DynamoDB MCP Server_create_lsi | Creates a local secondary index on a table (must be done during table creation) |
DynamoDB MCP Server_update_item | Updates specific attributes of an item in a table |
github-manager MCP Server_list_orgs | List GitHub organizations the authenticated user belongs to |
github-manager MCP Server_list_repos | List repositories in an organization |
github-manager MCP Server_create_repo | Create a new repository in an organization |
github-manager MCP Server_add_collaborator | Add a collaborator to a repository |
github-manager MCP Server_update_repo_settings | Update repository settings |
Zotero MCP Connector_get_collections | List all collections in the local Zotero library. |
Zotero MCP Connector_get_collection_items | Gets all items in a specific Zotero collection. |
Zotero MCP Connector_get_item_details | Get detailed information about a specific item in the library |
Zotero MCP Connector_get_tags | Get tags used in the Zotero library |
Zotero MCP Connector_get_recent | Get recently added items (e.g. papers or attachements) to your library |
Zotero MCP Connector_search_library | Search the local Zotero library of the user. |
Things MCP Server_get-areas | Get all areas from Things |
Things MCP Server_get-inbox | Get todos from Inbox |
Things MCP Server_get-today | Get todos due today |
Things MCP Server_get-upcoming | Get upcoming todos |
Things MCP Server_get-anytime | Get todos from Anytime list |
Things MCP Server_get-someday | Get todos from Someday list |
Things MCP Server_get-todos | Get todos from Things, optionally filtered by project |
Things MCP Server_get-projects | Get all projects from Things |
Things MCP Server_get-logbook | Get completed todos from Logbook, defaults to last 7 days |
Things MCP Server_get-trash | Get trashed todos |
Things MCP Server_get-tags | Get all tags |
Things MCP Server_get-tagged-items | Get items with a specific tag |
Things MCP Server_search-todos | Search todos by title or notes |
Things MCP Server_search-advanced | Advanced todo search with multiple filters |
Things MCP Server_get-recent | Get recently created items |
Things MCP Server_add-todo | Create a new todo in Things |
Things MCP Server_add-project | Create a new project in Things |
Things MCP Server_update-todo | Update an existing todo in Things |
Things MCP Server_update-project | Update an existing project in Things |
Things MCP Server_show-item | Show a specific item or list in Things |
Things MCP Server_search-items | Search for items in Things |
Redmine MCP Server_list_issues | List and search Redmine issues. Provides flexible filtering and sorting options. Supports filtering by custom fields using field IDs and patterns. Available since Redmine 1.0 |
Redmine MCP Server_create_issue | Create a new issue. Requires project ID and subject fields. Returns success or validation error status. Available since Redmine 1.0 |
Redmine MCP Server_list_projects | List all accessible projects. Shows both public projects and authorized private projects. Includes trackers, categories, modules and custom fields. Available since Redmine 1.0 |
Redmine MCP Server_update_issue | Update an existing issue. Modify any issue fields as needed. Returns success or validation error status. Available since Redmine 1.0 |
Redmine MCP Server_delete_issue | Delete an issue permanently. This action cannot be undone. Returns success status on completion. Available since Redmine 1.0 |
Redmine MCP Server_add_issue_watcher | Add a user as watcher to an issue. Enables user to receive issue updates. Available since Redmine 1.0 |
Redmine MCP Server_remove_issue_watcher | Remove a user from issue watchers. Stops issue update notifications. Available since Redmine 1.0 |
Redmine MCP Server_show_project | Get detailed project information. Specify using project ID or key. Supports retrieving additional data. Available since Redmine 1.0 |
Redmine MCP Server_create_project | Create a new project. Provide name and key. Configure optional settings like modules and trackers. Available since Redmine 1.0 |
Redmine MCP Server_update_project | Update project settings. Specify ID or key to identify project. Only specified fields will be changed. Available since Redmine 1.0 |
Redmine MCP Server_archive_project | Archive a project. Project becomes read only. Available since Redmine 5.0 |
Redmine MCP Server_unarchive_project | Restore an archived project. Project becomes editable again. Available since Redmine 5.0 |
Redmine MCP Server_delete_project | Delete project permanently. Deletes all project data and subprojects. This action cannot be undone. Available since Redmine 1.0 |
Redmine MCP Server_list_time_entries | List and search logged time records. Filter by user, project and date range. Returns up to 100 entries per request. Available since Redmine 1.1 |
Redmine MCP Server_show_time_entry | Get details of a time record. Returns complete information. Available since Redmine 1.1 |
Redmine MCP Server_create_time_entry | Record spent time on projects or issues. Hours and project or issue ID required. Activity type ID required if no default exists. Available since Redmine 1.1 |
Redmine MCP Server_update_time_entry | Update an existing time record. Modify hours, activity and comments. Cannot change project after creation. Available since Redmine 1.1 |
Redmine MCP Server_delete_time_entry | Delete a time record permanently. This action cannot be undone. Available since Redmine 1.1 |
Redmine MCP Server_list_users | List all users in the system. Shows active and locked accounts. Admin privileges required. Available since Redmine 1.1 |
Redmine MCP Server_show_user | Get details of a specific user. Use 'current' to get your own info. Returned fields depend on privileges. Available since Redmine 1.1 |
Redmine MCP Server_create_user | Create a new user account. Admin privileges required. Returns success or validation error status. Available since Redmine 1.1 |
Redmine MCP Server_update_user | Update an existing user. Admin privileges required. Returns success or validation error status. Available since Redmine 1.1 |
Redmine MCP Server_delete_user | Delete a user permanently. Admin privileges required. This action cannot be undone. Available since Redmine 1.1 |
MCP Reasoner_mcp-reasoner | Advanced reasoning tool with multiple strategies including Beam Search and Monte Carlo Tree Search |
Penumbra MCP Server_get_validator_set | Get the current validator set information |
Penumbra MCP Server_get_chain_status | Get current chain status including block height and chain ID |
Penumbra MCP Server_get_transaction | Get details of a specific transaction |
Penumbra MCP Server_get_dex_state | Get current DEX state including latest batch auction results |
Penumbra MCP Server_get_governance_proposals | Get active governance proposals |
Puppeteer MCP Server_puppeteer_navigate | Navigate to a URL |
Puppeteer MCP Server_puppeteer_page_history | Get the history of visited URLs, most recent urls first |
Puppeteer MCP Server_make_http_request | Make an HTTP request with curl |
Puppeteer MCP Server_semantic_search_requests | Semantically search for requests that occurred within a page URL. Returns the top 10 results. |
Redis MCP Server_hmset | Set multiple hash fields to multiple values |
Redis MCP Server_hget | Get the value of a hash field |
Redis MCP Server_hgetall | Get all the fields and values in a hash |
Redis MCP Server_scan | Scan Redis keys matching a pattern |
Redis MCP Server_set | Set string value with optional NX (only if not exists) and PX (expiry in milliseconds) options |
Redis MCP Server_get | Get string value |
Redis MCP Server_del | Delete a key |
Redis MCP Server_zadd | Add one or more members to a sorted set |
Redis MCP Server_zrange | Return a range of members from a sorted set by index |
Redis MCP Server_zrangebyscore | Return members from a sorted set with scores between min and max |
Redis MCP Server_zrem | Remove one or more members from a sorted set |
Redis MCP Server_sadd | Add one or more members to a set |
Redis MCP Server_smembers | Get all members in a set |
GitHub MCP Server_create_or_update_file | Create or update a single file in a GitHub repository |
GitHub MCP Server_search_repositories | Search for GitHub repositories |
GitHub MCP Server_create_repository | Create a new GitHub repository in your account |
GitHub MCP Server_get_file_contents | Get the contents of a file or directory from a GitHub repository |
GitHub MCP Server_push_files | Push multiple files to a GitHub repository in a single commit |
GitHub MCP Server_create_issue | Create a new issue in a GitHub repository |
GitHub MCP Server_create_pull_request | Create a new pull request in a GitHub repository |
GitHub MCP Server_fork_repository | Fork a GitHub repository to your account or specified organization |
GitHub MCP Server_create_branch | Create a new branch in a GitHub repository |
MCP Server Replicate_generate_image | Generate an image using the specified parameters. |
MCP Server Replicate_list_models | List available models on Replicate with optional filtering by owner. |
MCP Server Replicate_search_models | Search for models using semantic search. |
MCP Server Replicate_list_collections | List available model collections on Replicate. |
MCP Server Replicate_get_collection_details | Get detailed information about a specific collection. |
MCP Server Replicate_list_hardware | List available hardware options for running models. |
MCP Server Replicate_list_templates | List all available templates with their schemas. |
MCP Server Replicate_validate_template_parameters | Validate parameters against a template schema. |
MCP Server Replicate_create_prediction | Create a new prediction using a specific model version on Replicate. |
MCP Server Replicate_get_prediction | Get the status and results of a prediction. |
MCP Server Replicate_cancel_prediction | Cancel a running prediction. |
MCP Server Replicate_get_webhook_secret | Get the signing secret for verifying webhook requests. |
MCP Server Replicate_verify_webhook | Verify that a webhook request came from Replicate using HMAC-SHA256. |
MCP Server Replicate_search_available_models | Search for available models matching the query. |
MCP Server Replicate_get_model_details | Get detailed information about a specific model. |
MCP Server Replicate_subscribe_to_generation | Handle resource subscription requests. |
MCP Server Replicate_unsubscribe_from_generation | Handle resource unsubscribe requests. |
MCP Server Replicate_open_image_with_system | Open an image URL with the system's default application. |
IAC Memory MCP Server_get_terraform_provider_info | Retrieve comprehensive information about a Terraform provider |
IAC Memory MCP Server_list_terraform_providers | List all cached Terraform providers with basic metadata |
IAC Memory MCP Server_get_provider_version_history | Retrieve version history for a specific Terraform provider |
IAC Memory MCP Server_get_terraform_resource_info | Retrieve comprehensive information about a Terraform resource including schema and documentation |
IAC Memory MCP Server_list_provider_resources | List all resources associated with a specific Terraform provider |
IAC Memory MCP Server_get_ansible_collection_info | Retrieve comprehensive information about an Ansible collection |
IAC Memory MCP Server_list_ansible_collections | List all cached Ansible collections with basic metadata |
IAC Memory MCP Server_get_collection_version_history | Retrieve version history for a specific Ansible collection |
IAC Memory MCP Server_get_ansible_module_info | Retrieve comprehensive information about an Ansible module including schema and documentation |
IAC Memory MCP Server_get_resource_version_compatibility | Check resource compatibility across provider versions |
IAC Memory MCP Server_add_terraform_provider | Add a new Terraform provider to the memory store with version and documentation information |
IAC Memory MCP Server_update_provider_version | Update an existing Terraform provider's version information and documentation links |
IAC Memory MCP Server_add_terraform_resource | Add a new Terraform resource definition with its schema and version information |
IAC Memory MCP Server_update_resource_schema | Update an existing Terraform resource's schema and related information |
IAC Memory MCP Server_add_ansible_collection | Add a new Ansible collection to the memory store with version and documentation information |
IAC Memory MCP Server_update_collection_version | Update an existing Ansible collection's version information and documentation links |
IAC Memory MCP Server_add_ansible_module | Add a new Ansible module definition with its schema and version information |
IAC Memory MCP Server_update_module_version | Update an existing Ansible module's schema and related information |
IAC Memory MCP Server_get_module_version_compatibility | Check module compatibility across collection versions |
IAC Memory MCP Server_create_entity | Create a new entity in the knowledge graph with optional initial observations |
IAC Memory MCP Server_update_entity | Update an existing entity's properties and add new observations |
IAC Memory MCP Server_delete_entity | Remove an entity and its relationships from the knowledge graph |
IAC Memory MCP Server_view_relationships | Retrieve all relationships and observations for a specific entity |
Discord Raw API MCP Server_discord_api | Execute raw Discord API commands. Supports both REST API calls and application commands. |
MCP Neo4j Server_execute_query | Execute a Cypher query on Neo4j database |
MCP Neo4j Server_create_node | Create a new node in Neo4j |
MCP Neo4j Server_create_relationship | Create a relationship between two nodes |
Babashka MCP Server_execute | Execute Babashka (bb) code |
Obsidian MCP Server_get_vault_contents | Obsidian Vault |
Gemini Search MCP Server_search | Gemini 2.0Google |
Gemini Search MCP Server_analyze_file | Gemini 2.0PDF |
Gemini Search MCP Server_analyze_files | - |
Playwright Server MCP_playwright_navigate | Navigate to a URL,thip op will auto create a session |
Playwright Server MCP_playwright_screenshot | Take a screenshot of the current page or a specific element |
Playwright Server MCP_playwright_click | Click an element on the page using CSS selector |
Playwright Server MCP_playwright_fill | Fill out an input field |
Playwright Server MCP_playwright_evaluate | Execute JavaScript in the browser console |
Playwright Server MCP_playwright_click_text | Click an element on the page by its text content |
Playwright Server MCP_playwright_get_text_content | Get the text content of all elements |
Playwright Server MCP_playwright_get_html_content | Get the HTML content of the page |
Metaplex MCP Server_search_docs | Search Metaplex documentation |
Metaplex MCP Server_get_repo | Get Metaplaex repository details |
Metaplex MCP Server_search_code | Search code in Metaplaex repositories |
Say MCP Server_speak | Use macOS text-to-speech to speak text aloud |
Say MCP Server_list_voices | List available text-to-speech voices |
npm-search-mcp-server_search_npm_packages | Search for npm packages |
MCP Server Trello_get_cards_by_list_id | Fetch cards from a specific Trello list |
MCP Server Trello_get_lists | Retrieve all lists from the specified board |
MCP Server Trello_update_card_details | Update an existing card's details |
MCP Server Trello_archive_card | Send a card to the archive |
MCP Server Trello_add_list_to_board | Add a new list to the board |
MCP Server Trello_archive_list | Send a list to the archive |
MCP Server Trello_get_recent_activity | Fetch recent activity on the Trello board |
MCP Server Trello_add_card_to_list | Add a new card to a specified list |
MCP Server Trello_get_my_cards | Fetch all cards assigned to the current user |
solana-docs-mcp-server_get_latest_docs | Get latest Solana documentation sections |
solana-docs-mcp-server_search_docs | Search through Solana documentation |
solana-docs-mcp-server_get_api_reference | Get Solana SDK API reference details |
mcp-server-firecrawl_firecrawl_scrape | Scrape a single webpage with advanced options for content extraction. Supports various formats including markdown, HTML, and screenshots. Can execute custom actions like clicking or scrolling before scraping. |
mcp-server-firecrawl_firecrawl_map | Discover URLs from a starting point. Can use both sitemap.xml and HTML link discovery. |
mcp-server-firecrawl_firecrawl_crawl | Start an asynchronous crawl of multiple pages from a starting URL. Supports depth control, path filtering, and webhook notifications. |
mcp-server-firecrawl_firecrawl_batch_scrape | Scrape multiple URLs in batch mode. Returns a job ID that can be used to check status. |
mcp-server-firecrawl_firecrawl_check_batch_status | Check the status of a batch scraping job. |
mcp-server-firecrawl_firecrawl_check_crawl_status | Check the status of a crawl job. |
mcp-server-firecrawl_firecrawl_search | Search and retrieve content from web pages with optional scraping. Returns SERP results by default (url, title, description) or full page content when scrapeOptions are provided. |
mcp-server-firecrawl_firecrawl_extract | Extract structured information from web pages using LLM. Supports both cloud AI and self-hosted LLM extraction. |
mcp-server-firecrawl_firecrawl_deep_research | Conduct deep research on a query using web crawling, search, and AI analysis. |
Playwright MCP Server_playwright_navigate | Navigate to a URL |
Playwright MCP Server_playwright_screenshot | Take a screenshot of the current page or a specific element |
Playwright MCP Server_playwright_click | Click an element on the page |
Playwright MCP Server_playwright_fill | fill out an input field |
Playwright MCP Server_playwright_select | Select an element on the page with Select tag |
Playwright MCP Server_playwright_hover | Hover an element on the page |
Playwright MCP Server_playwright_evaluate | Execute JavaScript in the browser console |
Playwright MCP Server_playwright_get | Perform an HTTP GET request |
Playwright MCP Server_playwright_post | Perform an HTTP POST request |
Playwright MCP Server_playwright_put | Perform an HTTP PUT request |
Playwright MCP Server_playwright_patch | Perform an HTTP PATCH request |
Playwright MCP Server_playwright_delete | Perform an HTTP DELETE request |
WeCom Bot MCP Server_send_wecom_file | Send file to WeCom. |
WeCom Bot MCP Server_send_wecom_image | Send image to WeCom. |
WeCom Bot MCP Server_send_message | Send message to WeCom. |
Marginalia MCP Server_search-marginalia | Search the web using Marginalia Search |
Wikimedia MCP Server_search_content | Full-text search across Wikimedia page content. Returns snippets matching the query. Parameters: query (required), limit (1-50), project (e.g., 'wikipedia'), language (e.g., 'en') |
Wikimedia MCP Server_get_page | Get Wikimedia page content, title, URL and last modified date. Parameters: title (required), project (e.g., 'wikipedia'), language (e.g., 'en') |
Wikimedia MCP Server_search_titles | Search Wikimedia page titles starting with the query. Returns suggestions with descriptions. Parameters: query (required), limit (1-100), project (e.g., 'wikipedia'), language (e.g., 'en') |
Wikimedia MCP Server_get_languages | Get versions of a Wikimedia page in other languages. Parameters: title (required), project (e.g., 'wikipedia'), language (e.g., 'en') |
Wikimedia MCP Server_get_featured | Get featured Wikimedia content for a date. Returns featured article, most read pages, and picture of the day. Parameters: date (YYYY/MM/DD, default today), project ('wikipedia' only), language (en/de/fr/es/ru/ja/zh) |
Wikimedia MCP Server_get_on_this_day | Get historical events from Wikimedia for a date. Parameters: date (MM/DD, default today), type (all/selected/births/deaths/holidays/events), project ('wikipedia' only), language (en/de/fr/es/ru/ja/zh) |
MPC Tally API Server_list-daos | List DAOs on Tally sorted by specified criteria |
MPC Tally API Server_get-dao | Get detailed information about a specific DAO |
MPC Tally API Server_list-delegates | List delegates for a specific organization with their metadata |
MPC Tally API Server_get-delegators | Get list of delegators for a specific address |
MPC Tally API Server_list-proposals | List proposals for a specific DAO or organization using its slug |
MPC Tally API Server_get-proposal | Get detailed information about a specific proposal. You must provide either the Tally ID (globally unique) or both onchainId and governorId (unique within a governor). |
MPC Tally API Server_get-address-votes | Get votes cast by an address for a specific organization |
MPC Tally API Server_get-address-created-proposals | Get proposals created by an address for a specific organization |
MPC Tally API Server_get-address-daos-proposals | Returns proposals from DAOs where a given address has participated (voted, proposed, etc.) |
MPC Tally API Server_get-address-received-delegations | Returns delegations received by an address |
MPC Tally API Server_get-delegate-statement | Get a delegate's statement for a specific governor or organization |
MPC Tally API Server_get-address-governances | Returns the list of governances (DAOs) an address has delegated to |
MPC Tally API Server_get-proposal-timeline | Get the timeline of events for a specific proposal |
MPC Tally API Server_get-proposal-voters | Get a list of all voters who have voted on a specific proposal |
MPC Tally API Server_get-address-metadata | Get metadata information about a specific Ethereum address |
MPC Tally API Server_get-proposal-security-analysis | Get security analysis for a specific proposal, including threat analysis and simulations |
MPC Tally API Server_get-proposal-votes-cast | Get vote statistics and formatted vote counts for a specific proposal |
MPC Tally API Server_get-proposal-votes-cast-list | Get a list of votes cast for a specific proposal, including formatted vote amounts |
MPC Tally API Server_get-governance-proposals-stats | Get statistics about passed and failed proposals for a specific DAO |
MCP Weather Server_get_hourly_weather | Get hourly weather forecast for a location. |
MCP Scholarly Server_search-arxiv | Search arxiv for articles related to the given keyword. |
MCP Scholarly Server_search-google-scholar | Search google scholar for articles related to the given keyword. |
MCP Etherscan Server_check-balance | Check the ETH balance of an Ethereum address |
MCP Etherscan Server_get-transactions | Get recent transactions for an Ethereum address |
MCP Etherscan Server_get-token-transfers | Get ERC20 token transfers for an Ethereum address |
MCP Etherscan Server_get-contract-abi | Get the ABI for a smart contract |
MCP Etherscan Server_get-gas-prices | Get current gas prices in Gwei |
MCP Etherscan Server_get-ens-name | Get the ENS name for an Ethereum address |
Cursor MCP Server_get-alerts | Get weather alerts for a state |
Cursor MCP Server_get-forecast | Get weather forecast for a location |
Postman MCP Server_run-collection | Run a Postman Collection using Newman |
MCP Screenshot Server_take_screenshot | Capture a screenshot of any web page or local GUI |
UIFlowchartCreator_generate_ui_flow | Generate a UI flow diagram by analyzing React/Angular repositories. This tool scans the codebase to identify components, their relationships, and the overall UI structure. |
CoinGecko MCP Server_get-coins | Get a paginated list of all supported coins on CoinGecko. Data up to March 9, 2025 |
CoinGecko MCP Server_find-coin-ids | Find CoinGecko IDs for a list of coin names or symbols (case-insensitive). Data up to March 9, 2025 |
CoinGecko MCP Server_get-historical-data | Get historical price, market cap, and volume data for a specific coin. Data up to March 9, 2025 |
CoinGecko MCP Server_refresh-cache | Manually update the local cache of CoinGecko coin data (automatically refreshed periodically, only needed if seeing stale data) |
CoinGecko MCP Server_get-ohlc-data | Get OHLC (Open, High, Low, Close) data for a specific coin within a time range. Data up to March 9, 2025 |
Supabase NextJS MCP Server_query_data | Query data from Supabase |
Supabase NextJS MCP Server_insert_record | Insert a record into Supabase |
Supabase NextJS MCP Server_update_record | Update a record in Supabase |
Supabase NextJS MCP Server_delete_record | Delete a record from Supabase |
MCP GitHub Issue Server_get_issue_task | Fetch GitHub issue details to use as a task |
mcp2mqtt_set_pwm | PWM0-100 |
mcp2mqtt_get_pico_info | Pico |
mcp2mqtt_led_control | LED |
OpenCTI MCP Server_get_latest_reports | OpenCTI |
OpenCTI MCP Server_get_report_by_id | IDOpenCTI |
OpenCTI MCP Server_search_indicators | OpenCTI |
OpenCTI MCP Server_search_malware | OpenCTI |
OpenCTI MCP Server_search_threat_actors | OpenCTI |
OpenCTI MCP Server_get_user_by_id | ID |
OpenCTI MCP Server_list_users | - |
OpenCTI MCP Server_list_groups | - |
OpenCTI MCP Server_list_attack_patterns | - |
OpenCTI MCP Server_get_campaign_by_name | - |
OpenCTI MCP Server_list_connectors | - |
OpenCTI MCP Server_list_status_templates | - |
OpenCTI MCP Server_get_file_by_id | ID |
OpenCTI MCP Server_list_files | - |
OpenCTI MCP Server_list_marking_definitions | - |
OpenCTI MCP Server_list_labels | - |
MCP Package Docs Server_search_package_docs | Search for symbols or content within package documentation |
MCP Package Docs Server_describe_go_package | Get a brief description of a Go package |
MCP Package Docs Server_describe_python_package | Get a brief description of a Python package |
MCP Package Docs Server_describe_npm_package | Get a brief description of an NPM package |
MCP Package Docs Server_get_npm_package_doc | Get full documentation for an NPM package |
MCP Package Docs Server_lookup_go_doc | [DEPRECATED] Use describe_go_package instead. Get a brief description of a Go package |
MCP Package Docs Server_lookup_python_doc | [DEPRECATED] Use describe_python_package instead. Get a brief description of a Python package |
MCP Package Docs Server_lookup_npm_doc | [DEPRECATED] Use describe_npm_package instead. Get a brief description of an NPM package |
MCP Package Docs Server_get_hover | Get hover information for a position in a document using Language Server Protocol |
MCP Package Docs Server_get_completions | Get completion suggestions for a position in a document using Language Server Protocol |
MCP Package Docs Server_get_diagnostics | Get diagnostic information for a document using Language Server Protocol |
MCP Orchestrator Server_delete_task | Delete a task if it has no dependents |
MCP Orchestrator Server_get_next_task | Get the next available task |
MCP Orchestrator Server_create_task | Create a new task |
MCP Orchestrator Server_update_task | Update an existing pending task |
MCP Orchestrator Server_complete_task | Mark a task as completed |
MCP Orchestrator Server_get_task_status | Get status of all tasks |
MCP Orchestrator Server_get_task_details | Get details of a specific task |
Google News MCP Server_google_news_search | Search Google News for articles and news content. Results will be automatically categorized by topic. |
mcp-hn_get_stories | Get stories from Hacker News. The options are |
mcp-hn_get_user_info | Get user info from Hacker News, including the stories they've submitted |
mcp-hn_search_stories | Search stories from Hacker News. It is generally recommended to use simpler queries to get a broader set of results (less than 5 words). Very targetted queries may not return any results. |
mcp-hn_get_story_info | Get detailed story info from Hacker News, including the comments |
Figma MCP Server_get-file | Get details of a Figma file |
Figma MCP Server_list-files | List files in a Figma project |
MCP Server for ArangoDB_arango_query | Execute an AQL query |
MCP Server for ArangoDB_arango_insert | Insert a document into a collection |
MCP Server for ArangoDB_arango_update | Update a document in a collection |
MCP Server for ArangoDB_arango_remove | Remove a document from a collection |
MCP Server for ArangoDB_arango_backup | Backup collections to JSON files. |
MCP Server for ArangoDB_arango_list_collections | List all collections in the database |
MCP Server for ArangoDB_arango_create_collection | Create a new collection in the database |
mcp-discord_remove_role | Remove a role from a user |
mcp-discord_get_server_info | Get information about a Discord server |
mcp-discord_list_members | Get a list of members in a server |
mcp-discord_add_role | Add a role to a user |
mcp-discord_create_text_channel | Create a new text channel |
mcp-discord_delete_channel | Delete a channel |
mcp-discord_add_reaction | Add a reaction to a message |
mcp-discord_remove_reaction | Remove a reaction from a message |
mcp-discord_send_message | Send a message to a specific channel |
mcp-discord_read_messages | Read recent messages from a channel |
mcp-discord_get_user_info | Get information about a Discord user |
mcp-discord_moderate_message | Delete a message and optionally timeout the user |
Hacker News MCP_get_stories | Get stories from Hacker News |
Paperless-NGX MCP Server_bulk_edit_documents | Perform bulk operations on documents |
Paperless-NGX MCP Server_post_document | Upload a new document to Paperless-NGX |
Paperless-NGX MCP Server_list_documents | List all documents |
Paperless-NGX MCP Server_get_document | Get a specific document by ID |
Paperless-NGX MCP Server_search_documents | Search documents using full-text query |
Paperless-NGX MCP Server_download_document | Download a document by ID |
Paperless-NGX MCP Server_list_tags | List all tags |
Paperless-NGX MCP Server_create_tag | Create a new tag |
Paperless-NGX MCP Server_update_tag | Update an existing tag |
Paperless-NGX MCP Server_delete_tag | Delete a tag |
Paperless-NGX MCP Server_bulk_edit_tags | Bulk edit tags (set permissions or delete) |
Paperless-NGX MCP Server_list_correspondents | List all correspondents |
Paperless-NGX MCP Server_create_correspondent | Create a new correspondent |
Paperless-NGX MCP Server_bulk_edit_correspondents | Bulk edit correspondents (set permissions or delete) |
Paperless-NGX MCP Server_list_document_types | List all document types |
Paperless-NGX MCP Server_create_document_type | Create a new document type |
Paperless-NGX MCP Server_bulk_edit_document_types | Bulk edit document types (set permissions or delete) |
MCP Browser Automation Server_playwright_navigate | Navigate to a URL |
MCP Browser Automation Server_playwright_screenshot | Take a screenshot of the current page or a specific element |
MCP Browser Automation Server_playwright_click | Click an element on the page |
MCP Browser Automation Server_playwright_fill | fill out an input field |
MCP Browser Automation Server_playwright_select | Select an element on the page with Select tag |
MCP Browser Automation Server_playwright_hover | Hover an element on the page |
MCP Browser Automation Server_playwright_evaluate | Execute JavaScript in the browser console |
MCP Browser Automation Server_playwright_get | Perform an HTTP GET request |
MCP Browser Automation Server_playwright_post | Perform an HTTP POST request |
MCP Browser Automation Server_playwright_put | Perform an HTTP PUT request |
MCP Browser Automation Server_playwright_patch | Perform an HTTP PATCH request |
MCP Browser Automation Server_playwright_delete | Perform an HTTP DELETE request |
Perplexity MCP Server_search | Search Perplexity for coding help |
Kagi MCP Server_ask_fastgpt | Ask fastgpt to search web and give an answer with references |
Kagi MCP Server_enrich_web | Enrich context with web content focused on general, non-commercial web content. |
Kagi MCP Server_enrich_news | Enrich context with web content focused on non-commercial news and discussions. |
HubSpot MCP Server_hubspot_get_contacts | Get contacts from HubSpot |
HubSpot MCP Server_hubspot_create_contact | Create a new contact in HubSpot |
HubSpot MCP Server_hubspot_get_companies | Get companies from HubSpot |
HubSpot MCP Server_hubspot_create_company | Create a new company in HubSpot |
HubSpot MCP Server_hubspot_get_company_activity | Get activity history for a specific company |
MCP Compass_recommend-mcp-servers | |
@kazuph/mcp-obsidian_obsidian_read_notes | Read the contents of multiple notes. Each note's content is returned with its path as a reference. Failed reads for individual notes won't stop the entire operation. Reading too many at once may result in an error. |
@kazuph/mcp-obsidian_obsidian_search_notes | Searches for a note by its name. The search is case-insensitive and matches partial names. Queries can also be a valid regex. Returns paths of the notes that match the query. |
@kazuph/mcp-obsidian_obsidian_read_notes_dir | Lists only the directory structure under the specified path. Returns the relative paths of all directories without file contents. |
@kazuph/mcp-obsidian_obsidian_write_note | Creates a new note at the specified path. Before writing, check the directory structure using obsidian_read_notes_dir. If the target directory is unclear, the operation will be paused and you will be prompted to specify the correct directory. |
@kazuph/mcp-youtube_get_youtube_transcript | Download YouTube video transcript and metadata |
@kazuph/mcp-taskmanager_request_planning | Register a new user request and plan its associated tasks. You must provide 'originalRequest' and 'tasks', and optionally 'splitDetails'. This tool initiates a new workflow for handling a user's request. The workflow is as follows:
The critical point is to always wait for user approval after completing each task and after all tasks are done, wait for request completion approval. Do not proceed automatically. |
@kazuph/mcp-taskmanager_get_next_task | Given a 'requestId', return the next pending task (not done yet). If all tasks are completed, it will indicate that no more tasks are left and that you must wait for the request completion approval. A progress table showing the current status of all tasks will be displayed with each response. If the same task is returned again or if no new task is provided after a task was marked as done but not yet approved, you MUST NOT proceed. In such a scenario, you must prompt the user for approval via 'approve_task_completion' before calling 'get_next_task' again. Do not skip the user's approval step. In other words:
|
@kazuph/mcp-taskmanager_mark_task_done | Mark a given task as done after you've completed it. Provide 'requestId' and 'taskId', and optionally 'completedDetails'. After marking a task as done, a progress table will be displayed showing the updated status of all tasks. After this, DO NOT proceed to 'get_next_task' again until the user has explicitly approved this completed task using 'approve_task_completion'. |
@kazuph/mcp-taskmanager_approve_task_completion | Once the assistant has marked a task as done using 'mark_task_done', the user must call this tool to approve that the task is genuinely completed. Only after this approval can you proceed to 'get_next_task' to move on. A progress table will be displayed before requesting approval, showing the current status of all tasks. If the user does not approve, do not call 'get_next_task'. Instead, the user may request changes, or even re-plan tasks by using 'request_planning' again. |
@kazuph/mcp-taskmanager_approve_request_completion | After all tasks are done and approved, this tool finalizes the entire request. The user must call this to confirm that the request is fully completed. A progress table showing the final status of all tasks will be displayed before requesting final approval. If not approved, the user can add new tasks using 'request_planning' and continue the process. |
@kazuph/mcp-taskmanager_open_task_details | Get details of a specific task by 'taskId'. This is for inspecting task information at any point. |
@kazuph/mcp-taskmanager_list_requests | List all requests with their basic information and summary of tasks. This provides a quick overview of all requests in the system. |
@kazuph/mcp-taskmanager_add_tasks_to_request | Add new tasks to an existing request. This allows extending a request with additional tasks. A progress table will be displayed showing all tasks including the newly added ones. |
@kazuph/mcp-taskmanager_update_task | Update an existing task's title and/or description. Only uncompleted tasks can be updated. A progress table will be displayed showing the updated task information. |
@kazuph/mcp-taskmanager_delete_task | Delete a specific task from a request. Only uncompleted tasks can be deleted. A progress table will be displayed showing the remaining tasks after deletion. |
@kazuph/mcp-pocket_pocket_get_articles | Fetches the latest unread articles from Pocket API. Returns up to 20 articles by default. You can specify the number of articles to fetch (1-20) using the count parameter. Returns the article ID, title, URL, and excerpt for each article. |
@kazuph/mcp-pocket_pocket_mark_as_read | Marks a specific Pocket article as read (archived) using its item ID. |
Perplexity MCP Server_perplexity_search_web | Search the web using Perplexity AI with recency filtering |
MCP Tool Server_fetch | Fetches a website and returns its content |
MCP Memory Service_store_memory | Store new information with optional tags |
MCP Memory Service_retrieve_memory | Find relevant memories based on query |
MCP Memory Service_search_by_tag | Search memories by tags |
Glide API MCP Server_set_api_version | Set the Glide API version and authentication to use |
Glide API MCP Server_get_app | Get information about a Glide app |
Glide API MCP Server_get_tables | Get tables for a Glide app |
Glide API MCP Server_get_table_rows | Get rows from a table in a Glide app |
Glide API MCP Server_add_table_row | Add a new row to a table in a Glide app |
Glide API MCP Server_update_table_row | Update an existing row in a table |
Veri5ight MCP Server_ethereum_getRecentTransactions | Get recent transactions for an Ethereum address |
Veri5ight MCP Server_ethereum_getTokenBalance | Get ERC20 token balance for an address |
Veri5ight MCP Server_ethereum_getTokenDelegation | Get delegation info for an ERC20 governance token |
Veri5ight MCP Server_ethereum_getContractInfo | Get information about any contract |
Veri5ight MCP Server_ethereum_getTransactionInfo | Get detailed information about an Ethereum transaction |
PiAPI-MCP Server_generate_image | Generate an image from text using PiAPI Flux |
@kazuph/mcp-gmail-gas_gmail_search_messages | Gmail queryGmail : "subject newer_than:1d" JSON(messageId) |
@kazuph/mcp-gmail-gas_gmail_get_message | messageId : messageId (GmailID) |
@kazuph/mcp-gmail-gas_gmail_download_attachment | messageIdattachmentId Downloads attachmentIdattachmentsattachmentname(invoice.pdf) : - messageId: ID - attachmentId: ID - outputFilename: |
@kazuph/mcp-fetch_fetch | Retrieves URLs from the Internet and extracts their content as markdown. Images from the page will be processed and included with the response automatically. Parameters:
Image Processing:
IMPORTANT: All parameters must be in proper JSON format - use double quotes for keys and string values, and no quotes for numbers and booleans. Examples: Initial fetch:{ "url": "https://example.com", "maxLength": 10000, "imageMaxCount": 2 } Fetch next set of images:{ "url": "https://example.com", "imageStartIndex": 2, "imageMaxCount": 2 } |
@kazuph/mcp-github-pera1_github_get_code | Retrieves code from a GitHub repository URL and combines it into a single file. The URL must start with "https://". Query Parameters:
Examples:
The tool will correctly parse the repository structure and fetch the files from the specified branch. |
ClickHouse MCP Server_list_databases | - |
ClickHouse MCP Server_list_tables | - |
ClickHouse MCP Server_run_select_query | - |
Amazon Bedrock MCP Server_generate_image | Generate image(s) using Amazon Nova Canvas model. The returned data is Base64-encoded string that represent each image that was generated. |
Google Calendar_delete_event | Deletes an event from the calendar |
Google Calendar_create_event | Creates a new event in Google Calendar |
Google Calendar_get_event | Retrieves details of a specific event |
Google Calendar_update_event | Updates an existing event |
Google Calendar_list_events | Lists events within a specified time range |
MCP NPX Fetch_fetch_html | Fetch a website and return the content as HTML |
MCP NPX Fetch_fetch_markdown | Fetch a website and return the content as Markdown |
MCP NPX Fetch_fetch_txt | Fetch a website, return the content as plain text (no HTML) |
MCP NPX Fetch_fetch_json | Fetch a JSON file from a URL |
Australian Bureau of Statistics (ABS)_query_dataset | Query a specific ABS dataset with optional filters |
MCP Server Neurolorap_code_collector | Collect code from files into a markdown document |
MCP Server Neurolorap_project_structure_reporter | Generate a report of project structure metrics |
Cryptocurrency Market Data MCP Server_get-price | Get current price of a cryptocurrency pair from a specific exchange |
Cryptocurrency Market Data MCP Server_get-market-summary | Get detailed market summary for a cryptocurrency pair from a specific exchange |
Cryptocurrency Market Data MCP Server_get-top-volumes | Get top cryptocurrencies by trading volume from a specific exchange |
Cryptocurrency Market Data MCP Server_list-exchanges | List all supported cryptocurrency exchanges |
Cryptocurrency Market Data MCP Server_get-historical-ohlcv | Get historical OHLCV (candlestick) data for a trading pair |
Cryptocurrency Market Data MCP Server_get-price-change | Get price change statistics over different time periods |
Cryptocurrency Market Data MCP Server_get-volume-history | Get trading volume history over time |
mcp-tool-builder_create_tool | Create a new Python tool with specified functionality |
mcp-tool-builder_list_available_tools | List all currently available tools |
mcp-tool-builder_get_bitcoin_price | Gets current Bitcoin price in USD from CoinGecko API |
mcp-tool-builder_get_weather_forecast | Retrieves weather forecast for a given ZIP code using NWS API |
Website Downloader_download_website | Download an entire website using wget |
Google Workspace MCP Server_list_emails | List recent emails from Gmail inbox |
Google Workspace MCP Server_search_emails | Search emails with advanced query |
Google Workspace MCP Server_send_email | Send a new email |
Google Workspace MCP Server_modify_email | Modify email labels (archive, trash, mark read/unread) |
Google Workspace MCP Server_list_events | List upcoming calendar events |
Google Workspace MCP Server_create_event | Create a new calendar event |
Google Workspace MCP Server_update_event | Update an existing calendar event |
Google Workspace MCP Server_delete_event | Delete a calendar event |
Mozilla Readability Parser MCP Server_parse | Extracts and transforms webpage content into clean, LLM-optimized Markdown. Returns article title, main content, excerpt, byline and site name. Uses Mozilla's Readability algorithm to remove ads, navigation, footers and non-essential elements while preserving the core content structure. |
Meilisearch MCP Server_health-check | Check Meilisearch server health |
Meilisearch MCP Server_get-version | Get Meilisearch version information |
Meilisearch MCP Server_get-stats | Get database statistics |
Meilisearch MCP Server_get-settings | Get current settings for an index |
Meilisearch MCP Server_create-index | Create a new Meilisearch index |
Meilisearch MCP Server_list-indexes | List all Meilisearch indexes |
Meilisearch MCP Server_update-settings | Update settings for an index |
Meilisearch MCP Server_get-documents | Get documents from an index |
Meilisearch MCP Server_add-documents | Add documents to an index |
Meilisearch MCP Server_search | Search through Meilisearch indices. If indexUid is not provided, it will search across all indices. |
Meilisearch MCP Server_get-task | Get information about a specific task |
Meilisearch MCP Server_get-connection-settings | Get current Meilisearch connection settings |
Meilisearch MCP Server_update-connection-settings | Update Meilisearch connection settings |
Meilisearch MCP Server_get-tasks | Get list of tasks with optional filters |
Meilisearch MCP Server_cancel-tasks | Cancel tasks based on filters |
Meilisearch MCP Server_get-keys | Get list of API keys |
Meilisearch MCP Server_create-key | Create a new API key |
Meilisearch MCP Server_delete-key | Delete an API key |
Meilisearch MCP Server_get-health-status | Get comprehensive health status of Meilisearch |
Meilisearch MCP Server_get-index-metrics | Get detailed metrics for an index |
Meilisearch MCP Server_get-system-info | Get system-level information |
Rijksmuseum MCP Server_get_artwork_image | Retrieve detailed image tile information for high-resolution viewing of an artwork. This tool provides data for implementing deep zoom functionality, allowing detailed examination of the artwork at various zoom levels. The response includes multiple zoom levels (z0 to z6):
Each zoom level contains:
This is particularly useful for:
|
Rijksmuseum MCP Server_get_user_sets | Retrieve collections created by Rijksstudio users. These are curated sets of artworks that users have grouped together based on themes, artists, periods, or personal interests. Each set includes:
This tool is useful for:
|
Rijksmuseum MCP Server_get_user_set_details | Retrieve detailed information about a specific user-created collection in Rijksstudio. Returns comprehensive information about the set and its contents, including:
This tool is particularly useful for:
|
Rijksmuseum MCP Server_open_image_in_browser | Open a high-resolution image of an artwork in the default web browser for viewing. This tool is useful when you want to examine an artwork visually or show it to the user. Works with any valid Rijksmuseum image URL. |
Rijksmuseum MCP Server_get_artist_timeline | Generate a chronological timeline of an artist's works in the Rijksmuseum collection. This tool is perfect for studying an artist's development, analyzing their artistic periods, or understanding their contribution to art history over time. |
Rijksmuseum MCP Server_search_artwork | Search and filter artworks in the Rijksmuseum collection. This tool provides extensive filtering options including artist name, type of artwork, materials, techniques, time periods, colors, and more. Results can be sorted in various ways and are paginated. |
Rijksmuseum MCP Server_get_artwork_details | Retrieve comprehensive details about a specific artwork from the Rijksmuseum collection. Returns extensive information including:
This is the primary tool for in-depth research on a specific artwork, providing all available museum documentation and metadata. |
markdown2pdf-mcp_create_pdf_from_markdown | Convert markdown content to PDF. Note: Cannot handle LaTeX math equations. Supports basic markdown elements like headers, lists, tables, code blocks, blockquotes, and images (both local and external URLs). |
Cedardiff MCP Server_edit_file | Edit a file using CEDARScript syntax |
OpenHue MCP Server_get-lights | List all Hue lights or get details for a specific light |
OpenHue MCP Server_control-light | Control a specific Hue light |
OpenHue MCP Server_get-rooms | List all rooms or get details for a specific room |
OpenHue MCP Server_control-room | Control all lights in a room |
OpenHue MCP Server_get-scenes | List all scenes or get details for specific scenes |
OpenHue MCP Server_activate-scene | Activate a specific scene |
MCP File Preview Server_preview_file | Preview local HTML file and capture screenshot |
MCP File Preview Server_analyze_content | Analyze HTML content structure |
SearXNG Server_searxng_web_search | Performs a web search using the SearxNG API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. |
SearXNG Server_web_url_read | Read the content from an URL. Use this for further information retrieving to understand the content of each URL. |
social-media-mcp_post_to_x | Post a message to X (formerly Twitter) |
social-media-mcp_list_x_posts | List X (formerly Twitter) posts |
social-media-mcp_create_x_thread | Create a thread on X (formerly Twitter) |
mcp-neovim-server_vim_buffer | Current VIM text editor buffer with line numbers shown |
mcp-neovim-server_vim_command | Send a command to VIM for navigation, spot editing, and line deletion. For shell commands like ls, use without the leading colon (e.g. '!ls' not ':!ls'). |
mcp-neovim-server_vim_status | Get the status of the VIM editor |
mcp-neovim-server_vim_edit | Edit lines using insert or replace in the VIM editor. |
mcp-neovim-server_vim_window | Manipulate Neovim windows (split, close, navigate) |
mcp-neovim-server_vim_mark | Set a mark at a specific position |
mcp-neovim-server_vim_register | Set content of a register |
mcp-neovim-server_vim_visual | Make a visual selection |
Sefaria Jewish Library MCP Server_get_text | get a jewish text from the jewish library |
Sefaria Jewish Library MCP Server_get_commentaries | get a list of references of commentaries for a jewish text |
Sefaria Jewish Library MCP Server_search_texts | search for jewish texts in the Sefaria library |
MCPMC (Minecraft MCP)_find_blocks | Find nearby blocks of specific types. Use this to locate building materials or identify terrain. |
MCPMC (Minecraft MCP)_craft_item | Craft items using materials in inventory. Can use a crafting table if specified. |
MCPMC (Minecraft MCP)_chat | Send a chat message to the server |
MCPMC (Minecraft MCP)_navigate_relative | Make the bot walk relative to its current position. dx moves right(+)/left(-), dy moves up(+)/down(-), dz moves forward(+)/back(-) relative to bot's current position and orientation |
MCPMC (Minecraft MCP)_dig_block_relative | Dig a single block relative to the bot's current position. dx moves right(+)/left(-), dy moves up(+)/down(-), dz moves forward(+)/back(-) relative to bot's current position and orientation |
MCPMC (Minecraft MCP)_dig_area_relative | Dig multiple blocks in an area relative to the bot's current position. Coordinates use the same relative system as dig_block_relative. Use this for clearing spaces. |
MCPMC (Minecraft MCP)_place_block | Place a block from the bot's inventory at the specified position. Use this for building structures. |
MCPMC (Minecraft MCP)_inspect_inventory | Check the contents of the bot's inventory to see available materials. |
MCPMC (Minecraft MCP)_follow_player | Make the bot follow a specific player |
MCPMC (Minecraft MCP)_attack_entity | Attack a specific entity near the bot |
mcp-vcd_get-signal | Get all instances of a specified signal in a VCD file |
OpenRouter MCP Server_chat_completion | Send a message to OpenRouter.ai and get a response |
OpenRouter MCP Server_search_models | Search and filter OpenRouter.ai models based on various criteria |
OpenRouter MCP Server_get_model_info | Get detailed information about a specific model |
OpenRouter MCP Server_validate_model | Check if a model ID is valid |
@wopal/mcp-server-hotnews_get_hot_news | Get hot trending lists from various platforms |
hny-mcp_list_datasets | Lists available datasets for the active environment with pagination, sorting, and search support. Returns dataset names, slugs, descriptions, and timestamps. |
hny-mcp_list_columns | Lists all columns available in the specified dataset, including their names, types, descriptions, and hidden status. Supports pagination, sorting by type/name/created_at, and searching by name/description. Note: all is NOT supported as a dataset name. |
hny-mcp_run_query | Executes a Honeycomb query, returning results with statistical summaries. CRITICAL RULE: For COUNT operations, NEVER include a "column" field in your calculation, even as null or undefined. Example: Use {"op": "COUNT"} NOT {"op": "COUNT", "column": "anything"}. Additional Rules:
|
hny-mcp_analyze_columns | Analyzes specific columns in a dataset by running statistical queries and returning computed metrics. This tool allows users to get statistical information about a specific column, including value distribution, top values, and numeric statistics (for numeric columns). Supports analyzing up to 10 columns at once by specifying an array of column names in the 'columns' parameter. When multiple columns are specified, they will be analyzed together as a group, showing the distribution of their combined values. Use this tool before running queries to get a better understanding of the data in your dataset. |
hny-mcp_list_boards | Lists available boards (dashboards) for a specific environment with pagination, sorting, and search support. Returns board IDs, names, descriptions, creation times, and last update times. |
hny-mcp_get_board | Retrieves a specific board (dashboard) from a Honeycomb environment. This tool returns a detailed object containing the board's ID, name, description, creation time, and last update time. |
hny-mcp_list_markers | Lists available markers (deployment events) for a specific dataset or environment with pagination, sorting, and search support. Returns IDs, messages, types, URLs, creation times, start times, and end times. |
hny-mcp_list_recipients | Lists available recipients for notifications in a specific environment. This tool returns a list of all recipients available in the specified environment, including their names, types, targets, and metadata. |
hny-mcp_list_slos | Lists available SLOs (Service Level Objectives) for a specific dataset. This tool returns a list of all SLOs available in the specified environment, including their names, descriptions, time periods, and target per million events expected to succeed. NOTE: all is NOT supported as a dataset name -- it is not possible to list all SLOs in an environment. |
hny-mcp_get_slo | Retrieves a specific SLO (Service Level Objective) by ID with detailed information. This tool returns a detailed object containing the SLO's ID, name, description, time period, target per million, compliance, budget remaining, SLI alias, and timestamps. |
hny-mcp_list_triggers | Lists available triggers (alerts) for a specific dataset. This tool returns a list of all triggers available in the specified dataset, including their names, descriptions, thresholds, and other metadata. NOTE: all is NOT supported as a dataset name -- it is not possible to list all triggers in an environment. |
hny-mcp_get_trigger | Retrieves a specific trigger (alert) by ID with detailed information. This tool returns a detailed object containing the trigger's ID, name, description, threshold, frequency, alert type, triggered status, disabled status, recipients, evaluation schedule type, and timestamps. |
hny-mcp_get_trace_link | Generates a direct deep link to a specific trace in the Honeycomb UI. This tool creates a URL that opens a specific distributed trace, optionally positioning to a particular span and time range. If no time range is specified, the trace must have been generated within two hours from the current time. If only the start time is provided, the end time is assumed to be 10 minutes from the start time. |
hny-mcp_get_instrumentation_help | Provides important guidance for how to instrument code with OpenTelemetry traces and logs. It is intended to be used when someone wants to instrument their code, or improve instrumentation (such as getting advice on improving their logs or tracing, or creating new instrumentation). It is BEST used after inspecting existing code and telemetry data to understand some operational characteristics. However, if there is no telemetry data to read from Honeycomb, it can still provide guidance on how to instrument code. |
mcp-pdf-tools_merge-pdfs | Merge multiple PDF files into a single PDF |
mcp-pdf-tools_extract-pages | Extract specific pages from a PDF file |
mcp-pdf-tools_search-pdfs | Search for PDF files in a directory with optional pattern matching |
mcp-pdf-tools_merge-pdfs-ordered | Merge PDFs in a specific order based on patterns or exact names |
mcp-pdf-tools_find-related-pdfs | Find a PDF and then search for related PDFs based on its content, including common substring patterns |
mapbox-mcp-server_mapbox_directions | Get navigation route between two points |
mapbox-mcp-server_mapbox_directions_by_places | Get navigation route between multiple places using their names |
mapbox-mcp-server_mapbox_matrix | Calculate travel time and distance matrices between coordinates |
mapbox-mcp-server_mapbox_matrix_by_places | Calculate travel time and distance matrices between places using their names |
mapbox-mcp-server_mapbox_geocoding | Search for places and convert addresses into coordinates |
mcp-graphql_introspect-schema | Introspect the GraphQL schema, use this tool before doing a query to get the schema information if you do not have it available as a resource already. |
mcp-graphql_query-graphql | Query a GraphQL endpoint with the given query and variables |
mcp-rest-api_test_request | Test a REST API endpoint and get detailed response information. Base URL: https://api.example.org/v2 | SSL Verification enabled (see config resource for SSL settings) | Authentication: No authentication configured | No custom headers defined (see config resource for headers) | The tool automatically: - Normalizes endpoints (adds leading slash, removes trailing slashes) - Handles authentication header injection - Applies custom headers from HEADER_* environment variables - Accepts any HTTP status code as valid - Limits response size to 10000 bytes (see config resource for size limit settings) - Returns detailed response information including: * Full URL called * Status code and text * Response headers * Response body * Request details (method, headers, body) * Response timing * Validation messages | Error Handling: - Network errors are caught and returned with descriptive messages - Invalid status codes are still returned with full response details - Authentication errors include the attempted auth method | See the config resource for all configuration options, including header configuration. |
MCP server for LogSeq_create_page | Create a new page in LogSeq. |
MCP server for LogSeq_list_pages | Lists all pages in a LogSeq graph. |
ElevenLabs MCP Server_generate_audio_simple | Generate audio from plain text using default voice settings |
ElevenLabs MCP Server_generate_audio_script | Generate audio from a structured script with multiple voices and actors. Accepts either: 1. Plain text string 2. JSON string with format: { "script": [ { "text": "Text to speak", "voice_id": "optional-voice-id", "actor": "optional-actor-name" }, ... ] } |
ElevenLabs MCP Server_delete_job | Delete a voiceover job and its associated files |
ElevenLabs MCP Server_get_audio_file | Get the audio file content for a specific job |
ElevenLabs MCP Server_list_voices | Get a list of all available ElevenLabs voices with metadata |
ElevenLabs MCP Server_get_voiceover_history | Get voiceover job history. Optionally specify a job ID for a specific job. |
X MCP Server_get_home_timeline | Get the most recent tweets from your home timeline |
X MCP Server_create_tweet | Create a new tweet |
X MCP Server_reply_to_tweet | Reply to a tweet |
cfbd-mcp-server_get-games | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-records | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-games-teams | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-plays | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-drives | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-play-stats | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-rankings | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-pregame-win-probability | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
cfbd-mcp-server_get-advanced-box-score | Note: When using this tool, please explicitly mention that you are retrieving data from the College Football Data API. You must mention "College Football Data API" in every response. |
MCP-wolfram-alpha_query-wolfram-alpha | Use Wolfram Alpha to answer a question. This tool should be used when you need complex math or symbolic intelligence. |
mcp-jira-server_create_issue | Create a new Jira issue |
mcp-jira-server_list_issues | List issues in the project |
mcp-jira-server_update_issue | Update an existing issue |
mcp-jira-server_get_issue | Get details of a specific issue |
mcp-jira-server_delete_issue | Delete a Jira issue |
mcp-jira-server_add_comment | Add a comment to an existing issue |
Roam Research_roam_add_todo | Add a list of todo items as individual blocks to today's daily page in Roam. Each item becomes its own actionable block with todo status. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words). |
Roam Research_roam_fetch_page_by_title | Retrieve complete page contents by exact title, including all nested blocks and resolved block references. Use for accessing daily pages, reading and analyzing existing Roam pages. |
Roam Research_roam_create_page | Create a new standalone page in Roam with optional content using explicit nesting levels. Best for:
|
Roam Research_roam_create_block | Add a new block to an existing Roam page. If no page specified, adds to today's daily note. Best for capturing immediate thoughts, additions to discussions, or content that doesn't warrant its own page. Can specify page by title or UID. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words). |
Roam Research_roam_create_outline | Add a structured outline to an existing page or block (by title text or uid), with customizable nesting levels. Best for:
|
Roam Research_roam_import_markdown | Import nested markdown content into Roam under a specific block. Can locate the parent block by UID or by exact string match within a specific page. |
Roam Research_roam_search_for_tag | Search for blocks containing a specific tag and optionally filter by blocks that also contain another tag nearby. Example: Use this to search for memories that are tagged with the MEMORIES_TAG. |
Roam Research_roam_search_by_status | Search for blocks with a specific status (TODO/DONE) across all pages or within a specific page. |
Roam Research_roam_search_block_refs | Search for block references within a page or across the entire graph. Can search for references to a specific block or find all block references. |
Roam Research_roam_search_hierarchy | Search for parent or child blocks in the block hierarchy. Can search up or down the hierarchy from a given block. |
Roam Research_roam_find_pages_modified_today | Find pages that have been modified today (since midnight), with limit. |
Roam Research_roam_search_by_text | Search for blocks containing specific text across all pages or within a specific page. |
Roam Research_roam_update_block | Update a single block identified by its UID. Use this for individual block updates when you need to either replace the entire content or apply a transform pattern to modify specific parts of the content. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words). |
Roam Research_roam_update_multiple_blocks | Efficiently update multiple blocks in a single batch operation. Use this when you need to update several blocks at once to avoid making multiple separate API calls. Each block in the batch can independently either have its content replaced or transformed using a pattern. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words). |
Roam Research_roam_search_by_date | Search for blocks or pages based on creation or modification dates. Not for daily pages with ordinal date titles. |
Roam Research_roam_remember | Add a memory or piece of information to remember, stored on the daily page with MEMORIES_TAG tag and optional categories. NOTE on Roam-flavored markdown: For direct linking: use [[link]] syntax. For aliased linking, use alias syntax. Do not concatenate words in links/hashtags - correct: #[[multiple words]] #self-esteem (for typically hyphenated words). |
Roam Research_roam_recall | Retrieve all stored memories on page titled MEMORIES_TAG, or tagged block content with the same name. Returns a combined, deduplicated list of memories. Optionally filter blcoks with a specified tag and sort by creation date. |
Roam Research_roam_datomic_query | Execute a custom Datomic query on the Roam graph beyond the available search tools. This provides direct access to Roam's query engine for advanced data retrieval. Note: Roam graph is case-sensitive. List of some of Roam's data model Namespaces and Attributes: ancestor (descendants), attrs (lookup), block (children, heading, open, order, page, parents, props, refs, string, text-align, uid), children (view-type), create (email, time), descendant (ancestors), edit (email, seen-by, time), entity (attrs), log (id), node (title), page (uid, title), refs (text). Predicates (clojure.string/includes?, clojure.string/starts-with?, clojure.string/ends-with?, <, >, <=, >=, =, not=, !=). Aggregates (distinct, count, sum, max, min, avg, limit). Tips: Use /parents for all ancestor levels, /children for direct descendants only; combine clojure.string for complex matching, use distinct to deduplicate, leverage Pull patterns for hierarchies, handle case-sensitivity carefully, and chain ancestry rules for multi-level queries. |
GitHub Mapper MCP Server_set-github-token | Set the GitHub Personal Access Token for authentication |
GitHub Mapper MCP Server_map-github-repo | Map a GitHub repository structure and provide summary information |
WebPerfect MCP Server_process_images | Process and optimize a batch of images |
mcp-neurolora_collect_code | Collect all code from a directory into a single markdown file |
mcp-neurolora_install_base_servers | Install base MCP servers to the configuration |
mcp-neurolora_analyze_code | Analyze code using OpenAI API (requires your API key). The analysis may take a few minutes. So, wait please. |
mcp-neurolora_create_github_issues | Create GitHub issues from analysis results. Requires GitHub token. |
mcp-reddit_fetch_reddit_hot_threads | Fetch hot threads from a subreddit Args: subreddit: Name of the subreddit limit: Number of posts to fetch (default: 10) Returns: Human readable string containing list of post information |
mcp-reddit_fetch_reddit_post_content | Fetch detailed content of a specific post Args: post_id: Reddit post ID comment_limit: Number of top level comments to fetch comment_depth: Maximum depth of comment tree to traverse Returns: Human readable string containing post content and comments tree |
mcp-function-app-tester_test_endpoint | Test a Function App endpoint and get detailed response information. The endpoint will be prepended to the base url which is: http://localhost:7071/api |
language-server-mcp_get_hover | Get hover information for a position in a document |
language-server-mcp_get_completions | Get completion suggestions for a position in a document |
language-server-mcp_get_diagnostics | Get diagnostic information for a document |
supabase-mcp_list_tables | List all tables in the database |
supabase-mcp_update_records | Update records in a Supabase table |
supabase-mcp_delete_records | Delete records from a Supabase table |
supabase-mcp_create_record | Create a new record in a Supabase table |
supabase-mcp_read_records | Read records from a Supabase table |
supabase-mcp_upload_file | Upload a file to Supabase Storage |
supabase-mcp_download_file | Download a file from Supabase Storage |
supabase-mcp_invoke_function | Invoke a Supabase Edge Function |
supabase-mcp_list_users | List users with pagination |
supabase-mcp_create_user | Create a new user |
supabase-mcp_update_user | Update user details |
supabase-mcp_delete_user | Delete a user |
supabase-mcp_assign_user_role | Assign a role to a user |
supabase-mcp_remove_user_role | Remove a role from a user |
pocketbase-mcp-server_create_collection | Create a new collection in PocketBase |
pocketbase-mcp-server_query_collection | Advanced query with filtering, sorting, and aggregation |
pocketbase-mcp-server_create_record | Create a new record in a collection |
pocketbase-mcp-server_list_records | List records from a collection with optional filters |
pocketbase-mcp-server_update_record | Update an existing record |
pocketbase-mcp-server_delete_record | Delete a record |
pocketbase-mcp-server_authenticate_user | Authenticate a user and get auth token |
pocketbase-mcp-server_create_user | Create a new user account |
pocketbase-mcp-server_get_collection_schema | Get schema details for a collection |
pocketbase-mcp-server_backup_database | Create a backup of the PocketBase database |
pocketbase-mcp-server_import_data | Import data into a collection |
pocketbase-mcp-server_migrate_collection | Migrate collection schema with data preservation |
pocketbase-mcp-server_manage_indexes | Manage collection indexes |
mcp-codex-keeper_add_documentation | Add a new documentation source |
mcp-codex-keeper_list_documentation | List all available documentation sources |
mcp-codex-keeper_update_documentation | Update documentation content from source |
mcp-codex-keeper_search_documentation | Search through documentation content |
MCP Zotero_get_item_details | Get detailed information about a specific paper |
MCP Zotero_get_collection_items | Get all items in a specific collection |
MCP Zotero_get_collections | List all collections in your Zotero library |
MCP Zotero_search_library | Search your entire Zotero library |
MCP Zotero_get_recent | Get recently added papers to your library |
mcp-azure-tablestorage_query_table | WARNING: This tool returns a limited subset of results (default: 5 items) to protect the LLM's context window. DO NOT increase this limit unless explicitly confirmed by the user. Query data from an Azure Storage Table with optional filters. Supported OData Filter Examples:
Supported Operators:
|
mcp-azure-tablestorage_get_table_schema | Get property names and types from a table |
mcp-azure-tablestorage_list_tables | List all tables in the storage account |
mcp-reasoner_mcp-reasoner | Advanced reasoning tool with multiple strategies including Beam Search and Monte Carlo Tree Search |
mcp-playwright_playwright_post | Perform an HTTP POST request |
mcp-playwright_playwright_hover | Hover an element on the page |
mcp-playwright_playwright_put | Perform an HTTP PUT request |
mcp-playwright_playwright_fill | fill out an input field |
mcp-playwright_playwright_evaluate | Execute JavaScript in the browser console |
mcp-playwright_playwright_get | Perform an HTTP GET request |
mcp-playwright_playwright_select | Select an element on the page with Select tag |
mcp-playwright_playwright_iframe_click | Click an element in an iframe on the page |
mcp-playwright_playwright_navigate | Navigate to a URL |
mcp-playwright_playwright_screenshot | Take a screenshot of the current page or a specific element |
mcp-playwright_playwright_click | Click an element on the page |
mcp-playwright_playwright_patch | Perform an HTTP PATCH request |
mcp-playwright_playwright_delete | Perform an HTTP DELETE request |
mcp-screenshot_capture | Captures a screenshot of the specified region and performs OCR. Options:
|
applescript-mcp_system_toggle_dark_mode | [System control and information] Toggle system dark mode |
applescript-mcp_system_volume | [System control and information] Set system volume |
applescript-mcp_system_get_frontmost_app | [System control and information] Get the name of the frontmost application |
applescript-mcp_system_launch_app | [System control and information] Launch an application |
applescript-mcp_system_quit_app | [System control and information] Quit an application |
applescript-mcp_system_get_battery_status | [System control and information] Get battery level and charging status |
applescript-mcp_calendar_add | [Calendar operations] Add a new event to Calendar |
applescript-mcp_calendar_list | [Calendar operations] List all events for today |
applescript-mcp_finder_get_selected_files | [Finder and file operations] Get currently selected files in Finder |
applescript-mcp_finder_search_files | [Finder and file operations] Search for files by name |
applescript-mcp_finder_quick_look_file | [Finder and file operations] Preview a file using Quick Look |
applescript-mcp_clipboard_get_clipboard | [Clipboard management operations] Get current clipboard content |
applescript-mcp_clipboard_set_clipboard | [Clipboard management operations] Set clipboard content |
applescript-mcp_clipboard_clear_clipboard | [Clipboard management operations] Clear clipboard content |
applescript-mcp_notifications_toggle_do_not_disturb | [Notification management] Toggle Do Not Disturb mode using keyboard shortcut |
applescript-mcp_notifications_send_notification | [Notification management] Send a system notification |
applescript-mcp_iterm_paste_clipboard | [iTerm terminal operations] Paste clipboard content into iTerm |
applescript-mcp_iterm_run | [iTerm terminal operations] Run a command in iTerm |
MCP-timeserver_get-current-time | Get the current time in the configured local timezone |
apple-notifier-mcp_send_notification | Send a notification on macOS using osascript |
apple-notifier-mcp_prompt_user | Display a dialog prompt to get user input |
apple-notifier-mcp_speak | Speak text using macOS text-to-speech |
apple-notifier-mcp_take_screenshot | Take a screenshot using macOS screencapture |
apple-notifier-mcp_select_file | Open native file picker dialog |
findata-mcp-server_getStockQuote | Get the current quote for a stock. |
findata-mcp-server_getHistoricalData | Get historical data for a stock. |
MCP-Delete_delete_file | Delete a file at the specified path (supports both relative and absolute paths) |
MCP-Guide_explain_concept | Get a beginner-friendly explanation of an MCP concept |
MCP-Guide_show_example | Show a practical example of an MCP feature |
MCP-Guide_list_servers | List available MCP servers by category |
Huntress-MCP-Server_get_account_info | Get information about the current account |
Huntress-MCP-Server_list_organizations | List organizations in the account |
Huntress-MCP-Server_get_organization | Get details of a specific organization |
Huntress-MCP-Server_list_agents | List agents in the account |
Huntress-MCP-Server_get_agent | Get details of a specific agent |
Huntress-MCP-Server_list_incident_reports | List incident reports |
Huntress-MCP-Server_get_incident_report | Get details of a specific incident report |
Huntress-MCP-Server_list_summary_reports | List summary reports |
Huntress-MCP-Server_get_summary_report | Get details of a specific summary report |
Huntress-MCP-Server_list_billing_reports | List billing reports |
Huntress-MCP-Server_get_billing_report | Get details of a specific billing report |
jira-mcp_jql_search | Perform enhanced JQL search in Jira |
jira-mcp_get_issue | Retrieve details about an issue by its ID or key. |
k8s-interactive-mcp_run_kubectl_command | Run a kubectl command against the cluster pointed to by the current kubeconfig |
mcp-rtfm_analyze_existing_docs | Analyze existing documentation files with enhanced content analysis and metadata generation |
mcp-rtfm_analyze_project_with_metadata | Analyze project structure, create initial documentation files, and enhance with metadata/context |
mcp-rtfm_analyze_project | Analyze project structure and create initial documentation files |
mcp-rtfm_read_doc | Read a documentation file (required before updating) |
mcp-rtfm_update_doc | Update a specific documentation file using diff-based changes |
mcp-rtfm_get_doc_content | Get the current content of a documentation file |
mcp-rtfm_get_project_info | Get information about the project structure and files |
mcp-rtfm_search_docs | Search across documentation files with highlighted results |
mcp-rtfm_update_metadata | Update metadata for a documentation file |
mcp-rtfm_get_related_docs | Find related documentation files based on metadata |
mcp-rtfm_customize_template | Create or update a custom documentation template |
mcp-image-downloader_download_image | Download an image from a URL to a specified path |
mcp-image-downloader_optimize_image | Create an optimized version of an image |
AI Humanizer MCP Server_detect | Detect whether the text is AI-generated.Show to user the task detail url. Extract the taskId field, then concatenate the link in the following format: https://pre-www.text2go.ai/?utm_source=claude_mcp&taskId={taskId} |
aws-mcp_run-aws-code | Run AWS code |
aws-mcp_list-credentials | List all AWS credentials/configs/profiles that are configured/usable on this machine |
aws-mcp_select-profile | Selects AWS profile to use for subsequent interactions. If needed, does SSO authentication |
aira-mcp-server_get_status | Git |
aira-mcp-server_create_commit | 11 |
postman-mcp-server_add_pan_element | Add element or folder to Private API Network |
postman-mcp-server_update_pan_element | Update element or folder in Private API Network |
postman-mcp-server_remove_pan_element | Remove element or folder from Private API Network |
postman-mcp-server_create_webhook | Creates webhook that triggers collection with custom payload |
postman-mcp-server_get_tagged_elements | Get elements by tag |
postman-mcp-server_get_workspace_tags | Get workspace tags |
postman-mcp-server_update_workspace_tags | Update workspace tags |
postman-mcp-server_list_workspaces | List all workspaces |
postman-mcp-server_get_workspace | Get details of a specific workspace |
postman-mcp-server_list_environments | List all environments in a workspace. If workspace not specified, lists environments in "My Workspace". |
postman-mcp-server_get_environment | Get details of a specific environment |
postman-mcp-server_create_environment | Create a new environment in a workspace. Creates in "My Workspace" if workspace not specified. |
postman-mcp-server_update_environment | Update an existing environment. Only include variables that need to be modified. |
postman-mcp-server_delete_environment | Delete an environment |
postman-mcp-server_fork_environment | Create a fork of an environment in a workspace |
postman-mcp-server_get_environment_forks | Get a list of environment forks |
postman-mcp-server_merge_environment_fork | Merge a forked environment back into its parent |
postman-mcp-server_pull_environment | Pull changes from parent environment into forked environment |
postman-mcp-server_list_collections | List all collections in a workspace. Supports filtering and pagination. |
postman-mcp-server_get_collection | Get details of a specific collection |
postman-mcp-server_create_collection | Create a new collection in a workspace. Supports Postman Collection v2.1.0 format. |
postman-mcp-server_update_collection | Update an existing collection. Full collection replacement with maximum size of 20 MB. |
postman-mcp-server_patch_collection | Partially update a collection. Only updates provided fields. |
postman-mcp-server_delete_collection | Delete a collection |
postman-mcp-server_create_collection_folder | Create a new folder in a collection |
postman-mcp-server_get_collection_folder | Get details of a specific folder in a collection |
postman-mcp-server_update_collection_folder | Update a folder in a collection. Acts like PATCH, only updates provided values. |
postman-mcp-server_delete_collection_folder | Delete a folder from a collection |
postman-mcp-server_create_collection_request | Create a new request in a collection |
postman-mcp-server_get_collection_request | Get details of a specific request in a collection |
postman-mcp-server_update_collection_request | Update a request in a collection. Cannot change request folder. |
postman-mcp-server_delete_collection_request | Delete a request from a collection |
postman-mcp-server_create_collection_response | Create a new response in a collection |
postman-mcp-server_get_collection_response | Get details of a specific response in a collection |
postman-mcp-server_update_collection_response | Update a response in a collection. Acts like PATCH, only updates provided values. |
postman-mcp-server_delete_collection_response | Delete a response from a collection |
postman-mcp-server_fork_collection | Fork a collection to a workspace |
postman-mcp-server_get_collection_forks | Get a list of collection forks |
postman-mcp-server_merge_collection_fork | Merge a forked collection back into its parent |
postman-mcp-server_pull_collection_changes | Pull changes from parent collection into forked collection |
postman-mcp-server_transfer_collection_items | Transfer items between collections |
postman-mcp-server_get_user_info | Get information about the authenticated user |
postman-mcp-server_list_apis | List all APIs in a workspace |
postman-mcp-server_get_api | Get details of a specific API |
postman-mcp-server_create_api | Create a new API |
postman-mcp-server_update_api | Update an existing API |
postman-mcp-server_delete_api | Delete an API |
postman-mcp-server_add_api_collection | Add a collection to an API |
postman-mcp-server_get_api_collection | Get a specific collection from an API |
postman-mcp-server_create_api_schema | Create a schema for an API |
postman-mcp-server_get_api_schema | Get a specific schema from an API |
postman-mcp-server_create_api_version | Create a new version of an API |
postman-mcp-server_get_api_versions | Get all versions of an API |
postman-mcp-server_get_api_version | Get a specific version of an API |
postman-mcp-server_update_api_version | Update an API version |
postman-mcp-server_delete_api_version | Delete an API version |
postman-mcp-server_get_api_comments | Get comments for an API |
postman-mcp-server_create_api_comment | Create a new comment on an API (max 10,000 characters) |
postman-mcp-server_update_api_comment | Update an existing API comment (max 10,000 characters) |
postman-mcp-server_delete_api_comment | Delete an API comment |
postman-mcp-server_get_api_tags | Get tags for an API |
postman-mcp-server_update_api_tags | Update tags for an API |
postman-mcp-server_get_api_schema_files | Get files in an API schema |
postman-mcp-server_get_schema_file_contents | Get contents of a schema file |
postman-mcp-server_create_update_schema_file | Create or update a schema file |
postman-mcp-server_delete_schema_file | Delete a schema file |
postman-mcp-server_sync_collection_with_schema | Sync a collection with its schema |
postman-mcp-server_get_task_status | Get status of an asynchronous task |
postman-mcp-server_list_collection_access_keys | List collection access keys with optional filtering by collection ID |
postman-mcp-server_delete_collection_access_key | Delete a collection access key |
postman-mcp-server_list_workspace_roles | Get all available workspace roles based on team's plan |
postman-mcp-server_get_workspace_roles | Get roles for a specific workspace |
postman-mcp-server_update_workspace_roles | Update workspace roles for users and groups (limited to 50 operations per call) |
postman-mcp-server_get_collection_roles | Get roles for a collection |
postman-mcp-server_update_collection_roles | Update collection roles (requires EDITOR role) |
postman-mcp-server_get_authenticated_user | Get authenticated user information |
postman-mcp-server_list_mocks | List all mock servers |
postman-mcp-server_create_mock | Create a new mock server. Creates in Personal workspace if workspace not specified. |
postman-mcp-server_get_mock | Get details of a specific mock server |
postman-mcp-server_update_mock | Update an existing mock server |
postman-mcp-server_delete_mock | Delete a mock server |
postman-mcp-server_get_mock_call_logs | Get mock call logs. Maximum 6.5MB or 100 call logs per API call. Retention period based on Postman plan. |
postman-mcp-server_publish_mock | Publish mock server (sets Access Control to public) |
postman-mcp-server_unpublish_mock | Unpublish mock server (sets Access Control to private) |
postman-mcp-server_list_server_responses | Get all server responses for a mock |
postman-mcp-server_create_server_response | Create a server response. Only one server response can be active at a time. |
postman-mcp-server_get_server_response | Get a specific server response |
postman-mcp-server_update_server_response | Update a server response |
postman-mcp-server_delete_server_response | Delete a server response |
postman-mcp-server_list_monitors | Get all monitors |
postman-mcp-server_get_monitor | Get details of a specific monitor |
postman-mcp-server_create_monitor | Create a new monitor. Cannot create monitors for collections added to an API definition. |
postman-mcp-server_update_monitor | Update an existing monitor |
postman-mcp-server_delete_monitor | Delete a monitor |
postman-mcp-server_run_monitor | Run a monitor. For async=true, response won't include stats, executions, and failures. Use GET /monitors/{id} to get this information for async runs. |
postman-mcp-server_get_accounts | Gets Postman billing account details for the given team |
postman-mcp-server_list_account_invoices | Gets all invoices for a Postman billing account filtered by status |
postman-mcp-server_resolve_comment_thread | Resolves a comment and any associated replies |
postman-mcp-server_list_pan_elements | Get all elements and folders in Private API Network |
BOD-25-01-CSA-Microsoft-Policy-MCP_configure_authenticator_context | Configure Microsoft Authenticator to show login context (MS.AAD.3.3v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_complete_auth_methods_migration | Set Authentication Methods Manage Migration to Complete (MS.AAD.3.4v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_pam | Enforce PAM system for privileged role assignments (MS.AAD.7.5v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_privileged_mfa | Enforce phishing-resistant MFA for privileged roles (MS.AAD.3.6v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_restrict_app_registration | Allow only administrators to register applications (MS.AAD.5.1v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_restrict_app_consent | Allow only administrators to consent to applications (MS.AAD.5.2v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_configure_admin_consent | Configure admin consent workflow for applications (MS.AAD.5.3v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_restrict_group_consent | Prevent group owners from consenting to applications (MS.AAD.5.4v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_granular_roles | Enforce use of granular roles instead of Global Administrator (MS.AAD.7.2v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_disable_password_expiry | Disable password expiration (MS.AAD.6.1v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_cloud_accounts | Enforce cloud-only accounts for privileged users (MS.AAD.7.3v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_configure_global_admin_approval | Configure approval requirement for Global Administrator activation (MS.AAD.7.6v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_configure_role_alerts | Configure alerts for privileged role assignments (MS.AAD.7.7v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_configure_admin_alerts | Configure alerts for Global Administrator activation (MS.AAD.7.8v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_get_policy_status | Get current status of all CISA M365 security policies |
BOD-25-01-CSA-Microsoft-Policy-MCP_block_legacy_auth | Block legacy authentication (MS.AAD.1.1v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_block_high_risk_users | Block users detected as high risk (MS.AAD.2.1v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_configure_global_admins | Configure Global Administrator role assignments (MS.AAD.7.1v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_block_high_risk_signins | Block sign-ins detected as high risk (MS.AAD.2.3v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_phishing_resistant_mfa | Enforce phishing-resistant MFA for all users (MS.AAD.3.1v1) |
BOD-25-01-CSA-Microsoft-Policy-MCP_enforce_alternative_mfa | Enforce alternative MFA method if phishing-resistant MFA not enforced (MS.AAD.3.2v1) |
maven-mcp-server_get_maven_latest_version | Get the latest version of a Maven dependency |
maven-mcp-server_check_maven_version_exists | Check if a specific version of a Maven dependency exists |
unichat-ts-mcp-server_unichat | Chat with an assistant. Example tool use message: Ask the unichat to review and evaluate your proposal. |
MCP Word Counter_analyze_text | Count words and characters in a text document |
mcp-database-server_save_json_doc | Save a JSON document |
mcp-database-server_load_json_doc | Load a JSON document by ID |
mcp-database-server_delete_json_doc | Delete a JSON document by ID |
mcp-database-server_query_json_docs | Query JSON documents sorted by a field |
flightradar24-mcp-server_get_flight_positions | Get real-time flight positions with various filtering options |
flightradar24-mcp-server_get_flight_eta | Get estimated arrival time for a specific flight |
web-browser-mcp-server_browse_webpage | Extract content from a webpage with optional CSS selectors for specific elements |
atlas-mcp-server_atlas_skill_list | Lists available skills with optional fuzzy name matching |
atlas-mcp-server_atlas_skill_invoke | Executes specific skills (individually or combined) |
atlas-mcp-server_database_clean | Clean the database by removing all nodes and relationships, then reinitialize the schema. This operation cannot be undone. |
atlas-mcp-server_neo4j_search | Search the database for nodes with specific property values. Supports case-insensitive, wildcard, and fuzzy matching with pagination options. |
atlas-mcp-server_project_create | Create projects with unique names and optional descriptions. Supports both single project creation and bulk operations for multiple projects. |
atlas-mcp-server_project_delete | Delete projects and their associated data from the system. Supports both single project deletion and bulk operations for multiple projects. |
atlas-mcp-server_project_list | Unified tool for retrieving project information in various formats. Consolidates all project resource endpoints into a single tool. |
atlas-mcp-server_project_dependency_add | Define relationships between projects with specific dependency types. Supports both single dependency creation and bulk operations with detailed descriptions. |
atlas-mcp-server_project_dependency_remove | Remove dependency relationships between projects. Supports both single dependency removal and bulk operations for multiple dependencies. |
atlas-mcp-server_project_dependency_list | List all dependencies and dependents for a project, showing both projects it depends on and projects that depend on it. |
atlas-mcp-server_project_link_add | Add links to external resources like documentation, designs, or repositories. Supports both single link creation and bulk operations with optional categorization. |
atlas-mcp-server_project_link_update | Update existing project link properties including title, URL, description, and category. Supports both single and bulk update operations. |
atlas-mcp-server_project_link_delete | Delete links from projects permanently. Supports both single link deletion and bulk operations for multiple links. |
atlas-mcp-server_project_member_add | Add users to projects with role-based access control. Supports both single member addition and bulk operations with different permission levels. |
atlas-mcp-server_project_member_remove | Remove members from projects permanently. Supports both single member removal and bulk operations for multiple members. |
atlas-mcp-server_project_member_list | List all members of a project with their roles and join dates, ordered by join time with owners listed first. |
atlas-mcp-server_project_note_add | Add notes to projects for documentation and tracking. Supports both single note creation and bulk operations with optional categorization tags. |
atlas-mcp-server_project_update | Update existing project properties including name, description, and status. Supports both single project updates and bulk operations. |
atlas-mcp-server_whiteboard_create | Create a new whiteboard workspace with optional initial data and schema validation. Can be linked to projects for organization. |
atlas-mcp-server_whiteboard_update | Update whiteboard data by merging or replacing content. Supports partial updates to specific fields or complete data replacement. |
atlas-mcp-server_whiteboard_get | Retrieve whiteboard data with version control. Access either the latest version or a specific historical version by number. |
atlas-mcp-server_whiteboard_delete | Delete a whiteboard and its entire version history permanently. This operation cannot be undone. |
mcp-jina-ai_read_webpage | Extract content from a webpage in a format optimized for LLMs |
mcp-jina-ai_search_web | Search the web using Jina AI's search API |
mcp-jina-ai_fact_check | Fact-check a statement using Jina AI's grounding engine |
app-store-connect-mcp-server_list_apps | Get a list of all apps in App Store Connect |
app-store-connect-mcp-server_list_beta_groups | Get a list of all beta groups (internal and external) |
app-store-connect-mcp-server_list_group_testers | Get a list of all testers in a specific beta group |
app-store-connect-mcp-server_add_tester_to_group | Add a new tester to a beta group |
app-store-connect-mcp-server_remove_tester_from_group | Remove a tester from a beta group |
app-store-connect-mcp-server_get_app_info | Get detailed information about a specific app |
app-store-connect-mcp-server_disable_bundle_capability | Disable a capability for a bundle ID |
app-store-connect-mcp-server_enable_bundle_capability | Enable a capability for a bundle ID |
app-store-connect-mcp-server_create_bundle_id | Register a new bundle ID for app development |
app-store-connect-mcp-server_list_bundle_ids | Find and list bundle IDs that are registered to your team |
app-store-connect-mcp-server_get_bundle_id_info | Get detailed information about a specific bundle ID |
app-store-connect-mcp-server_list_devices | Get a list of all devices registered to your team |
app-store-connect-mcp-server_list_users | Get a list of all users registered on your App Store Connect team |
mcp-twikit_get_latest_timeline | Get tweets from your home timeline (Following). |
mcp-twikit_search_twitter | Search twitter with a query. Sort by 'Top' or 'Latest' |
mcp-twikit_get_user_tweets | Get tweets from a specific user's timeline. |
mcp-twikit_get_timeline | Get tweets from your home timeline (For You). |
contentful-mcp_search_entries | Search for entries using query parameters. Returns a maximum of 3 items per request. Use skip parameter to paginate through results. |
contentful-mcp_create_entry | Create a new entry in Contentful, before executing this function, you need to know the contentTypeId (not the content type NAME) and the fields of that contentType, you can get the fields definition by using the GET_CONTENT_TYPE tool. |
contentful-mcp_get_entry | Retrieve an existing entry |
contentful-mcp_update_entry | Update an existing entry, always send all field values, also the fields values that have not been updated |
contentful-mcp_delete_entry | Delete an entry |
contentful-mcp_publish_entry | Publish an entry |
contentful-mcp_unpublish_entry | Unpublish an entry |
contentful-mcp_list_assets | List assets in a space. Returns a maximum of 3 items per request. Use skip parameter to paginate through results. |
contentful-mcp_upload_asset | Upload a new asset |
contentful-mcp_get_asset | Retrieve an asset |
contentful-mcp_update_asset | Update an asset |
contentful-mcp_delete_asset | Delete an asset |
contentful-mcp_publish_asset | Publish an asset |
contentful-mcp_unpublish_asset | Unpublish an asset |
contentful-mcp_list_content_types | List content types in a space. Returns a maximum of 10 items per request. Use skip parameter to paginate through results. |
contentful-mcp_get_content_type | Get details of a specific content type |
contentful-mcp_create_content_type | Create a new content type |
contentful-mcp_update_content_type | Update an existing content type |
contentful-mcp_delete_content_type | Delete a content type |
contentful-mcp_publish_content_type | Publish a content type |
contentful-mcp_list_spaces | List all available spaces |
contentful-mcp_get_space | Get details of a space |
contentful-mcp_list_environments | List all environments in a space |
contentful-mcp_create_environment | Create a new environment |
contentful-mcp_delete_environment | Delete an environment |
Clojars-MCP-Server_get_clojars_latest_version | Get the latest version of a Clojars dependency (Maven artifact) |
Clojars-MCP-Server_check_clojars_version_exists | Check if a specific version of a Clojars dependency exists |
cognee-mcp_cognify | Cognifies text into knowledge graph |
cognee-mcp_codify | Transforms codebase into knowledge graph |
cognee-mcp_search | Searches for information in knowledge graph |
cognee-mcp_prune | Prunes knowledge graph |
mcp-ragdocs_search_documentation | Search through stored documentation using natural language queries. Use this tool to find relevant information across all stored documentation sources. Returns matching excerpts with context, ranked by relevance. Useful for finding specific information, code examples, or related documentation. |
mcp-ragdocs_list_sources | List all documentation sources currently stored in the system. Returns a comprehensive list of all indexed documentation including source URLs, titles, and last update times. Use this to understand what documentation is available for searching or to verify if specific sources have been indexed. |
mcp-ragdocs_extract_urls | Extract and analyze all URLs from a given web page. This tool crawls the specified webpage, identifies all hyperlinks, and optionally adds them to the processing queue. Useful for discovering related documentation pages, API references, or building a documentation graph. Handles various URL formats and validates links before extraction. |
mcp-ragdocs_remove_documentation | Remove specific documentation sources from the system by their URLs. Use this tool to clean up outdated documentation, remove incorrect sources, or manage the documentation collection. The removal is permanent and will affect future search results. Supports removing multiple URLs in a single operation. |
mcp-ragdocs_list_queue | List all URLs currently waiting in the documentation processing queue. Shows pending documentation sources that will be processed when run_queue is called. Use this to monitor queue status, verify URLs were added correctly, or check processing backlog. Returns URLs in the order they will be processed. |
mcp-ragdocs_run_queue | Process and index all URLs currently in the documentation queue. Each URL is processed sequentially, with proper error handling and retry logic. Progress updates are provided as processing occurs. Use this after adding new URLs to ensure all documentation is indexed and searchable. Long-running operations will process until the queue is empty or an unrecoverable error occurs. |
mcp-ragdocs_clear_queue | Remove all pending URLs from the documentation processing queue. Use this to reset the queue when you want to start fresh, remove unwanted URLs, or cancel pending processing. This operation is immediate and permanent - URLs will need to be re-added if you want to process them later. Returns the number of URLs that were cleared from the queue. |
https://github.com/sammcj/mcp-package-version_check_npm_versions | Check latest stable versions for npm packages |
https://github.com/sammcj/mcp-package-version_check_python_versions | Check latest stable versions for Python packages |
https://github.com/sammcj/mcp-package-version_check_pyproject_versions | Check latest stable versions for Python packages in pyproject.toml |
https://github.com/sammcj/mcp-package-version_check_maven_versions | Check latest stable versions for Java packages in pom.xml |
https://github.com/sammcj/mcp-package-version_check_gradle_versions | Check latest stable versions for Java packages in build.gradle |
https://github.com/sammcj/mcp-package-version_check_go_versions | Check latest stable versions for Go packages in go.mod |
https://github.com/sammcj/mcp-package-version_check_bedrock_models | Search, list, and get information about Amazon Bedrock models |
https://github.com/sammcj/mcp-package-version_get_latest_bedrock_model | Get the latest Claude Sonnet model from Amazon Bedrock (best for coding tasks) |
https://github.com/sammcj/mcp-package-version_check_docker_tags | Check available tags for Docker container images from Docker Hub, GitHub Container Registry, or custom registries |
mcp-search-linkup_search-web | Perform a web search query using Linkup. This tool is helpful for finding information on the web. |
mcp-git-ingest_github_directory_structure | |
mcp-git-ingest_github_read_important_files | |
mcp-linkedin_get_feed_posts | |
mcp-linkedin_search_jobs | |
MCP-summarization-functions_summarize_command | Execute a command and summarize its output if it exceeds the threshold |
MCP-summarization-functions_summarize_files | Summarize the contents of one or more files |
MCP-summarization-functions_summarize_directory | Summarize the structure of a directory |
MCP-summarization-functions_summarize_text | Summarize any text content (e.g., MCP tool output) |
MCP-summarization-functions_get_full_content | Retrieve the full content for a given summary ID |
searxng_search | search the web using searXNG. This will aggregate the results from google, bing, brave, duckduckgo and many others. Use this to find information on the web. Even if you do not have access to the internet, you can still use this tool to search the web. |
mcp-server-browserbase_browserbase_create_session | Create a new cloud browser session using Browserbase |
mcp-server-browserbase_browserbase_close_session | Close a browser session on Browserbase |
mcp-server-browserbase_browserbase_navigate | Navigate to a URL |
mcp-server-browserbase_browserbase_screenshot | Take a screenshot of the current page or a specific element |
mcp-server-browserbase_browserbase_click | Click an element on the page |
mcp-server-browserbase_browserbase_fill | Fill out an input field |
mcp-server-browserbase_browserbase_evaluate | Execute JavaScript in the browser console |
mcp-server-browserbase_browserbase_get_content | Extract all content from the current page |
mcp-pandoc_convert-contents | Converts content between different formats. Transforms input content from any supported format into the specified output format. CRITICAL REQUIREMENTS - PLEASE READ:
Supported formats:
CORRECT Usage Examples:
INCORRECT Usage Examples:
When requesting conversion, ALWAYS specify:
Note: After conversion, always check the success message for the exact file location. |
VirusTotal MCP Server_get_url_report | Get a comprehensive URL analysis report including security scan results and key relationships (communicating files, contacted domains/IPs, downloaded files, redirects, threat actors). Returns both the basic security analysis and automatically fetched relationship data. |
VirusTotal MCP Server_get_url_relationship | Query a specific relationship type for a URL with pagination support. Choose from 17 relationship types including analyses, communicating files, contacted domains/IPs, downloaded files, graphs, referrers, redirects, and threat actors. Useful for detailed investigation of specific relationship types. |
VirusTotal MCP Server_get_file_report | Get a comprehensive file analysis report using its hash (MD5/SHA-1/SHA-256). Includes detection results, file properties, and key relationships (behaviors, dropped files, network connections, embedded content, threat actors). Returns both the basic analysis and automatically fetched relationship data. |
VirusTotal MCP Server_get_file_relationship | Query a specific relationship type for a file with pagination support. Choose from 41 relationship types including behaviors, network connections, dropped files, embedded content, execution chains, and threat actors. Useful for detailed investigation of specific relationship types. |
VirusTotal MCP Server_get_ip_report | Get a comprehensive IP address analysis report including geolocation, reputation data, and key relationships (communicating files, historical certificates/WHOIS, resolutions). Returns both the basic analysis and automatically fetched relationship data. |
VirusTotal MCP Server_get_ip_relationship | Query a specific relationship type for an IP address with pagination support. Choose from 12 relationship types including communicating files, historical SSL certificates, WHOIS records, resolutions, and threat actors. Useful for detailed investigation of specific relationship types. |
VirusTotal MCP Server_get_domain_report | Get a comprehensive domain analysis report including DNS records, WHOIS data, and key relationships (SSL certificates, subdomains, historical data). Optionally specify which relationships to include in the report. Returns both the basic analysis and relationship data. |
mcp-datetime_get_datetime | Get current date and time in various formats |
mcp-mysql-server_connect_db | Connect to MySQL database |
mcp-mysql-server_query | Execute a SELECT query |
mcp-mysql-server_execute | Execute an INSERT, UPDATE, or DELETE query |
mcp-mysql-server_list_tables | List all tables in the database |
mcp-mysql-server_describe_table | Get table structure |
airtable-mcp-server_create_table | Create a new table in a base |
airtable-mcp-server_list_records | List records from a table |
airtable-mcp-server_list_bases | List all accessible Airtable bases |
airtable-mcp-server_list_tables | List all tables in a specific base |
airtable-mcp-server_get_record | Get a specific record by ID |
airtable-mcp-server_create_record | Create a new record in a table |
airtable-mcp-server_update_records | Update one or more records in a table |
airtable-mcp-server_delete_records | Delete one or more records from a table |
airtable-mcp-server_update_table | Update a table's name or description |
airtable-mcp-server_create_field | Create a new field in a table |
airtable-mcp-server_update_field | Update a field's name or description |
mcp-text-editor_append_text_file_contents | Append content to an existing text file. The file must exist. |
mcp-text-editor_get_text_file_contents | Read text file contents from multiple files and line ranges. Returns file contents with hashes for concurrency control and line numbers for reference. The hashes are used to detect conflicts when editing the files. File paths must be absolute. |
mcp-text-editor_create_text_file | Create a new text file with given content. The file must not exist already. |
mcp-text-editor_delete_text_file_contents | Delete specified content ranges from a text file. The file must exist. File paths must be absolute. You need to provide the file_hash comes from get_text_file_contents. |
mcp-text-editor_insert_text_file_contents | Insert content before or after a specific line in a text file. Uses hash-based validation for concurrency control. You need to provide the file_hash comes from get_text_file_contents. |
mcp-text-editor_patch_text_file_contents | Apply patches to text files with hash-based validation for concurrency control.you need to use get_text_file_contents tool to get the file hash and range hash every time before using this tool. you can use append_text_file_contents tool to append text contents to the file without range hash, start and end. you can use insert_text_file_contents tool to insert text contents to the file without range hash, start and end. |
mcp-dice_roll_dice | Roll dice using standard notation (e.g., '2d6+3', '1d20-2') |
mcp-shodan_ip_lookup | Retrieve comprehensive information about an IP address, including geolocation, open ports, running services, SSL certificates, hostnames, and cloud provider details if available. Returns service banners and HTTP server information when present. |
mcp-shodan_shodan_search | Search Shodan's database of internet-connected devices. Returns detailed information about matching devices including services, vulnerabilities, and geographic distribution. Supports advanced search filters and returns country-based statistics. |
mcp-shodan_cve_lookup | Query detailed vulnerability information from Shodan's CVEDB. Returns comprehensive CVE details including CVSS scores (v2/v3), EPSS probability and ranking, KEV status, proposed mitigations, ransomware associations, and affected products (CPEs). |
mcp-shodan_dns_lookup | Resolve domain names to IP addresses using Shodan's DNS service. Supports batch resolution of multiple hostnames in a single query. Returns IP addresses mapped to their corresponding hostnames. |
mcp-shodan_cpe_lookup | Search for Common Platform Enumeration (CPE) entries by product name in Shodan's CVEDB. Supports pagination and can return either full CPE details or just the total count. Useful for identifying specific versions and configurations of software and hardware. |
mcp-shodan_cves_by_product | Search for vulnerabilities affecting specific products or CPEs. Supports filtering by KEV status, sorting by EPSS score, date ranges, and pagination. Can search by product name or CPE 2.3 identifier. Returns detailed vulnerability information including severity scores and impact assessments. |
mcp-shodan_reverse_dns_lookup | Perform reverse DNS lookups to find hostnames associated with IP addresses. Supports batch lookups of multiple IP addresses in a single query. Returns all known hostnames for each IP address, with clear indication when no hostnames are found. |
MCP PubMed Search_pubmed_search | Search PubMed medical literature database |
Apple Shortcuts Server_run_shortcut | Run a Shortcuts automation by name |
Apple Shortcuts Server_list_shortcuts | List all available shortcuts |
Perplexity MCP Server_ask_perplexity | Perplexity equips agents with a specialized tool for efficiently gathering source-backed information from the internet, ideal for scenarios requiring research, fact-checking, or contextual data to inform decisions and responses. Each response includes citations, which provide transparent references to the sources used for the generated answer, and choices, which contain the model's suggested responses, enabling users to access reliable information and diverse perspectives. This function may encounter timeout errors due to long processing times, but retrying the operation can lead to successful completion. [Response structure]
|
mcp-installer_install_local_mcp_server | Install an MCP server whose code is cloned locally on your computer |
mcp-installer_install_repo_mcp_server | Install an MCP server via npx or uvx |
any-chat-completions-mcp_chat-with-openai | Text chat with OpenAI |
MCP Atlassian_confluence_search | Search Confluence content using simple terms or CQL |
MCP Atlassian_confluence_get_page | Get content of a specific Confluence page by ID |
MCP Atlassian_confluence_get_page_children | Get child pages of a specific Confluence page |
MCP Atlassian_confluence_get_page_ancestors | Get ancestor (parent) pages of a specific Confluence page |
MCP Atlassian_confluence_get_comments | Get comments for a specific Confluence page |
MCP Atlassian_confluence_create_page | Create a new Confluence page |
MCP Atlassian_confluence_update_page | Update an existing Confluence page |
MCP Atlassian_confluence_delete_page | Delete an existing Confluence page |
MCP Atlassian_confluence_attach_content | Attach content to a Confluence page |
MCP Atlassian_jira_get_issue | Get details of a specific Jira issue including its Epic links and relationship information |
MCP Atlassian_jira_update_issue | Update an existing Jira issue including changing status, adding Epic links, updating fields, etc. |
MCP Atlassian_jira_search | Search Jira issues using JQL (Jira Query Language) |
MCP Atlassian_jira_get_project_issues | Get all issues for a specific Jira project |
MCP Atlassian_jira_get_epic_issues | Get all issues linked to a specific epic |
MCP Atlassian_jira_get_transitions | Get available status transitions for a Jira issue |
MCP Atlassian_jira_get_worklog | Get worklog entries for a Jira issue |
MCP Atlassian_jira_download_attachments | Download attachments from a Jira issue |
MCP Atlassian_jira_get_agile_boards | Get jira agile boards by name, project key, or type |
MCP Atlassian_jira_get_board_issues | Get all issues linked to a specific board |
MCP Atlassian_jira_get_sprints_from_board | Get jira sprints from board by state |
MCP Atlassian_jira_get_sprint_issues | Get jira issues from sprint |
MCP Atlassian_jira_create_issue | Create a new Jira issue with optional Epic link or parent for subtasks |
MCP Atlassian_jira_delete_issue | Delete an existing Jira issue |
MCP Atlassian_jira_add_comment | Add a comment to a Jira issue |
MCP Atlassian_jira_add_worklog | Add a worklog entry to a Jira issue |
MCP Atlassian_jira_link_to_epic | Link an existing issue to an epic |
MCP Atlassian_jira_transition_issue | Transition a Jira issue to a new status |
mcp-miro_list_boards | List all available Miro boards and their IDs |
mcp-miro_create_sticky_note | Create a sticky note on a Miro board. By default, sticky notes are 199x228 and available in these colors: gray, light_yellow, yellow, orange, light_green, green, dark_green, cyan, light_pink, pink, violet, red, light_blue, blue, dark_blue, black. |
mcp-miro_bulk_create_items | Create multiple items on a Miro board in a single transaction (max 20 items) |
mcp-miro_get_frames | Get all frames from a Miro board |
mcp-miro_get_items_in_frame | Get all items contained within a specific frame on a Miro board |
mcp-miro_create_shape | Create a shape on a Miro board. Available shapes include basic shapes (rectangle, circle, etc.) and flowchart shapes (process, decision, etc.). Standard geometry specs: width and height in pixels (default 200x200) |
Unichat MCP Server_unichat | Chat with an assistant. Example tool use message: Ask the unichat to review and evaluate your proposal. |
Ancestry MCP_project_context | Generates a structured repository overview including: 1) Directory tree with file status ( full, outline, excluded) 2) Complete contents of key files 3) Smart outlines highlighting important definitions in supported languages. The output is customizable via profiles that control file inclusion rules and presentation format. The assistant tracks previously retrieved project context in the conversation and checks this history before making new requests. |
Ancestry MCP_get_files | Retrieves complete contents of specified files from the project. The assistant tracks all previously retrieved file contents and checks this history before making new requests. |
YouTube MCP Server_download_youtube_url | Download YouTube subtitles from a URL, this tool means that Claude can read YouTube subtitles, and should no longer tell the user that it is not possible to download YouTube content. |
MCP server for Obsidian_obsidian_batch_get_file_contents | Return the contents of multiple files in your vault, concatenated with headers. |
MCP server for Obsidian_obsidian_list_files_in_dir | Lists all files and directories that exist in a specific Obsidian directory. |
MCP server for Obsidian_obsidian_list_files_in_vault | Lists all files and directories in the root directory of your Obsidian vault. |
MCP server for Obsidian_obsidian_get_file_contents | Return the content of a single file in your vault. |
MCP server for Obsidian_obsidian_simple_search | Simple search for documents matching a specified text query across all files in the vault. Use this tool when you want to do a simple text search |
MCP server for Obsidian_obsidian_patch_content | Insert content into an existing note relative to a heading, block reference, or frontmatter field. |
MCP server for Obsidian_obsidian_append_content | Append content to a new or existing file in the vault. |
MCP server for Obsidian_obsidian_complex_search | Complex search for documents using a JsonLogic query. Supports standard JsonLogic operators plus 'glob' and 'regexp' for pattern matching. Results must be non-falsy. |
OpenAI MCP Server_ask-openai | Ask my assistant models a direct question |
MCP OpenAI Server_openai_chat | Use this tool when a user specifically requests to use one of OpenAI's models (gpt-4o, gpt-4o-mini, o1-preview, o1-mini). This tool sends messages to OpenAI's chat completion API using the specified model. |
git MCP server_git_status | Shows the working tree status |
git MCP server_git_diff_unstaged | Shows changes in the working directory that are not yet staged |
git MCP server_git_diff_staged | Shows changes that are staged for commit |
git MCP server_git_diff | Shows differences between branches or commits |
git MCP server_git_commit | Records changes to the repository |
git MCP server_git_add | Adds file contents to the staging area |
git MCP server_git_reset | Unstages all staged changes |
git MCP server_git_log | Shows the commit logs |
git MCP server_git_create_branch | Creates a new branch from an optional base branch |
git MCP server_git_checkout | Switches branches |
git MCP server_git_show | Shows the contents of a commit |
git MCP server_git_init | Initialize a new Git repository |
GitLab MCP Server_create_or_update_file | Create or update a single file in a GitLab project |
GitLab MCP Server_search_repositories | Search for GitLab projects |
GitLab MCP Server_create_repository | Create a new GitLab project |
GitLab MCP Server_get_file_contents | Get the contents of a file or directory from a GitLab project |
GitLab MCP Server_push_files | Push multiple files to a GitLab project in a single commit |
GitLab MCP Server_create_issue | Create a new issue in a GitLab project |
GitLab MCP Server_create_merge_request | Create a new merge request in a GitLab project |
GitLab MCP Server_fork_repository | Fork a GitLab project to your account or specified namespace |
GitLab MCP Server_create_branch | Create a new branch in a GitLab project |
GitHub MCP Server_create_or_update_file | Create or update a single file in a GitHub repository |
GitHub MCP Server_search_repositories | Search for GitHub repositories |
GitHub MCP Server_create_repository | Create a new GitHub repository in your account |
GitHub MCP Server_get_file_contents | Get the contents of a file or directory from a GitHub repository |
GitHub MCP Server_push_files | Push multiple files to a GitHub repository in a single commit |
GitHub MCP Server_create_issue | Create a new issue in a GitHub repository |
GitHub MCP Server_create_pull_request | Create a new pull request in a GitHub repository |
GitHub MCP Server_fork_repository | Fork a GitHub repository to your account or specified organization |
GitHub MCP Server_create_branch | Create a new branch in a GitHub repository |
GitHub MCP Server_list_commits | Get list of commits of a branch in a GitHub repository |
GitHub MCP Server_list_issues | List issues in a GitHub repository with filtering options |
GitHub MCP Server_update_issue | Update an existing issue in a GitHub repository |
GitHub MCP Server_add_issue_comment | Add a comment to an existing issue |
GitHub MCP Server_search_code | Search for code across GitHub repositories |
GitHub MCP Server_search_issues | Search for issues and pull requests across GitHub repositories |
GitHub MCP Server_search_users | Search for users on GitHub |
GitHub MCP Server_get_issue | Get details of a specific issue in a GitHub repository. |
NS Travel Information MCP Server_get_disruptions | Get comprehensive information about current and planned disruptions on the Dutch railway network. Returns details about maintenance work, unexpected disruptions, alternative transport options, impact on travel times, and relevant advice. Can filter for active disruptions and specific disruption types. |
NS Travel Information MCP Server_get_travel_advice | Get detailed travel routes between two train stations, including transfers, real-time updates, platform information, and journey duration. Can plan trips for immediate departure or for a specific future time, with options to optimize for arrival time. Returns multiple route options with status and crowding information. |
NS Travel Information MCP Server_get_departures | Get real-time departure information for trains from a specific station, including platform numbers, delays, route details, and any relevant travel notes. Returns a list of upcoming departures with timing, destination, and status information. |
NS Travel Information MCP Server_get_ovfiets | Get OV-fiets availability at a train station |
NS Travel Information MCP Server_get_station_info | Get detailed information about a train station |
NS Travel Information MCP Server_get_current_time_in_rfc3339 | Get the current server time (Europe/Amsterdam timezone) in RFC3339 format. This can be used as input for other tools that require date-time parameters. |
NS Travel Information MCP Server_get_arrivals | Get real-time arrival information for trains at a specific station, including platform numbers, delays, origin stations, and any relevant travel notes. Returns a list of upcoming arrivals with timing, origin, and status information. |
NS Travel Information MCP Server_get_prices | Get price information for domestic train journeys, including different travel classes, ticket types, and discounts. Returns detailed pricing information with conditions and validity. |
mcp-simple-arxiv_search_papers | Search for papers on arXiv by title and abstract content. You can use advanced search syntax:
Examples:
|
mcp-simple-arxiv_get_paper_data | Get detailed information about a specific paper including abstract and available formats |
mcp-simple-arxiv_list_categories | List all available arXiv categories and how to use them in search |
mcp-simple-arxiv_update_categories | Update the stored category taxonomy by fetching the latest version from arxiv.org |
MCP Web Research Server_search_google | Search Google for a query |
MCP Web Research Server_visit_page | Visit a webpage and extract its content |
MCP Web Research Server_take_screenshot | Take a screenshot of the current page |
ArXiv MCP Server_search_papers | Search for papers on arXiv with advanced filtering |
ArXiv MCP Server_download_paper | Download a paper and create a resource for it |
ArXiv MCP Server_list_papers | List all existing papers available as resources |
ArXiv MCP Server_read_paper | Read the full content of a stored paper in markdown format |
tavily-search_search | Search the web using Tavily API |
Search1API MCP Server_search | Search the web for real-time results |
Search1API MCP Server_crawl | Extract content from URL |
Search1API MCP Server_sitemap | Get all related links from a URL |
Search1API MCP Server_news | Search for news articles |
Search1API MCP Server_reasoning | Deep thinking and complex problem solving |
Exa MCP Server_search | Search the web using Exa AI |
Kagi MCP server_kagi_search | Perform web search using Kagi |
Fetch MCP Server_fetch | Fetches a URL from the internet and optionally extracts its contents as markdown. Although originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that. |
NYTimes Article Search MCP Server_search_articles | Search NYTimes articles from the last 30 days based on a keyword |
Brave Search MCP Server_brave_web_search | Performs a web search using the Brave Search API, ideal for general queries, news, articles, and online content. Use this for broad information gathering, recent events, or when you need diverse web sources. Supports pagination, content filtering, and freshness controls. Maximum 20 results per request, with offset for pagination. |
Brave Search MCP Server_brave_local_search | Searches for local businesses and places using Brave's Local Search API. Best for queries related to physical locations, businesses, restaurants, services, etc. Returns detailed information including:
|
Raygun MCP Server_get_application | Get application by identifier |
Raygun MCP Server_activate_error_group | Set the status of the error group to active |
Raygun MCP Server_list_applications | List all applications under the users account on Raygun |
Raygun MCP Server_get_application_by_api_key | Get application by API key |
Raygun MCP Server_regenerate_application_api_key | Regenerate application API key |
Raygun MCP Server_list_customers | List customers for an application |
Raygun MCP Server_list_deployments | List deployments for an application |
Raygun MCP Server_get_deployment | Get deployment by identifier |
Raygun MCP Server_delete_deployment | Delete deployment |
Raygun MCP Server_update_deployment | Update deployment details |
Raygun MCP Server_reprocess_deployment_commits | Reprocess deployment commits |
Raygun MCP Server_list_error_groups | List error groups for an application |
Raygun MCP Server_get_error_group | Get error group by identifier |
Raygun MCP Server_resolve_error_group | Set the status of the error group to resolved |
Raygun MCP Server_ignore_error_group | Set the status of the error group to ignored |
Raygun MCP Server_permanently_ignore_error_group | Set the status of the error group to permanently ignored |
Raygun MCP Server_list_pages | List pages for an application |
Raygun MCP Server_get_page_metrics_time_series | Get time-series metrics for pages |
Raygun MCP Server_get_page_metrics_histogram | Get histogram metrics for pages |
Raygun MCP Server_get_error_metrics_time_series | Get time-series metrics for errors |
Raygun MCP Server_list_sessions | List sessions for an application |
Raygun MCP Server_get_session | Get session by identifier |
Raygun MCP Server_list_invitations | Returns a list invitations that the token and token owner has access to |
Raygun MCP Server_send_invitation | Send an invitation to a user |
Raygun MCP Server_get_invitation | Get an invitation by identifier |
Raygun MCP Server_revoke_invitation | Revoke a sent invitation |
Raygun MCP Server_list_source_maps | Returns a list of source maps for the specified application |
Raygun MCP Server_get_source_map | Returns a single source map by identifier |
Raygun MCP Server_update_source_map | Update the details of a source map |
Raygun MCP Server_delete_source_map | Delete a source map |
Raygun MCP Server_upload_source_map | Uploads a source map to the specified application |
Raygun MCP Server_delete_all_source_maps | Deletes all source maps |
Google Maps MCP Server_maps_geocode | Convert an address into geographic coordinates |
Google Maps MCP Server_maps_reverse_geocode | Convert coordinates into an address |
Google Maps MCP Server_maps_search_places | Search for places using Google Places API |
Google Maps MCP Server_maps_place_details | Get detailed information about a specific place |
Google Maps MCP Server_maps_distance_matrix | Calculate travel distance and time for multiple origins and destinations |
Google Maps MCP Server_maps_elevation | Get elevation data for locations on the earth |
Google Maps MCP Server_maps_directions | Get directions between two points |
MemoryMesh_search_nodes | Search for nodes in the knowledge graph based on a query |
MemoryMesh_add_nodes | Add multiple new nodes in the knowledge graph |
MemoryMesh_update_nodes | Update existing nodes in the knowledge graph |
MemoryMesh_add_edges | Add multiple new edges between nodes in the knowledge graph. Edges should be in active voice |
MemoryMesh_update_edges | Update existing edges in the knowledge graph |
MemoryMesh_delete_nodes | Delete multiple nodes and their associated edges from the knowledge graph |
MemoryMesh_delete_edges | Delete multiple edges from the knowledge graph |
MemoryMesh_read_graph | Read the entire knowledge graph |
MemoryMesh_open_nodes | Open specific nodes in the knowledge graph by their names |
MemoryMesh_add_metadata | Add new metadata to existing nodes in the knowledge graph |
MemoryMesh_delete_metadata | Delete specific metadata from nodes in the knowledge graph |
MemoryMesh_add_artifact | Add a new artifact or unique item to the knowledge graph |
MemoryMesh_update_artifact | Update an existing artifact in the knowledge graph |
MemoryMesh_delete_artifact | Delete an existing artifact from the knowledge graph |
MemoryMesh_add_currency | Represents a type of currency in the game world. |
MemoryMesh_update_currency | Update an existing currency in the knowledge graph |
MemoryMesh_delete_currency | Delete an existing currency from the knowledge graph |
MemoryMesh_add_faction | A faction or organization operating within the game world. |
MemoryMesh_update_faction | Update an existing faction in the knowledge graph |
MemoryMesh_delete_faction | Delete an existing faction from the knowledge graph |
MemoryMesh_add_inventory | A collection of items or equipment belonging to a character, entity, or location. |
MemoryMesh_update_inventory | Update an existing inventory in the knowledge graph |
MemoryMesh_delete_inventory | Delete an existing inventory from the knowledge graph |
MemoryMesh_add_location | Add a new location to the knowledge graph |
MemoryMesh_update_player_character | Update an existing player_character in the knowledge graph |
MemoryMesh_delete_player_character | Delete an existing player_character from the knowledge graph |
MemoryMesh_update_location | Update an existing location in the knowledge graph |
MemoryMesh_delete_location | Delete an existing location from the knowledge graph |
MemoryMesh_add_npc | Add a new Non-Player Character (NPC) to the knowledge graph |
MemoryMesh_update_skills | Update an existing skills in the knowledge graph |
MemoryMesh_delete_skills | Delete an existing skills from the knowledge graph |
MemoryMesh_add_temporal | Represents a specific point in time and its associated environmental conditions. |
MemoryMesh_update_temporal | Update an existing temporal in the knowledge graph |
MemoryMesh_delete_temporal | Delete an existing temporal from the knowledge graph |
MemoryMesh_update_npc | Update an existing npc in the knowledge graph |
MemoryMesh_delete_npc | Delete an existing npc from the knowledge graph |
MemoryMesh_add_player_character | Add a new Player Character to the knowledge graph |
MemoryMesh_add_quest | Add a new Quest to the knowledge graph |
MemoryMesh_update_quest | Update an existing quest in the knowledge graph |
MemoryMesh_delete_quest | Delete an existing quest from the knowledge graph |
MemoryMesh_add_skills | Defines list of skills or abilities a character can possess. |
MemoryMesh_add_transportation | Represents a transportation owned or used by a character or entity. |
MemoryMesh_update_transportation | Update an existing transportation in the knowledge graph |
MemoryMesh_delete_transportation | Delete an existing transportation from the knowledge graph |
Knowledge Graph Memory Server_create_entities | Create multiple new entities in the knowledge graph |
Knowledge Graph Memory Server_create_relations | Create multiple new relations between entities in the knowledge graph. Relations should be in active voice |
Knowledge Graph Memory Server_add_observations | Add new observations to existing entities in the knowledge graph |
Knowledge Graph Memory Server_delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
Knowledge Graph Memory Server_delete_observations | Delete specific observations from entities in the knowledge graph |
Knowledge Graph Memory Server_delete_relations | Delete multiple relations from the knowledge graph |
Knowledge Graph Memory Server_read_graph | Read the entire knowledge graph |
Knowledge Graph Memory Server_search_nodes | Search for nodes in the knowledge graph based on a query |
Knowledge Graph Memory Server_open_nodes | Open specific nodes in the knowledge graph by their names |
Coinmarket_get_currency_listings | Get latest cryptocurrency listings |
Coinmarket_get_quotes | Get cryptocurrency quotes |
docker-mcp_create-container | Create a new standalone Docker container |
docker-mcp_deploy-compose | Deploy a Docker Compose stack |
docker-mcp_get-logs | Retrieve the latest logs for a specified Docker container |
docker-mcp_list-containers | List all Docker containers |
mcp-server-duckdb_read-query | Execute a SELECT query on the DuckDB database |
mcp-server-duckdb_list-tables | List all tables in the DuckDB database |
mcp-server-duckdb_describe-table | Get the schema information for a specific table |
mcp-server-duckdb_write-query | Execute an INSERT, UPDATE, or DELETE query on the DuckDB database |
mcp-server-duckdb_create-table | Create a new table in the DuckDB database |
Supabase MCP Server_list_organizations | List all organizations |
Supabase MCP Server_get_organization | Get details of a specific organization |
Supabase MCP Server_create_organization | Create a new organization |
Supabase MCP Server_list_projects | List all Supabase projects |
Supabase MCP Server_create_project | Create a new Supabase project |
Supabase MCP Server_get_project | Get details of a specific Supabase project |
Supabase MCP Server_delete_project | Delete a Supabase project |
Supabase MCP Server_get_project_api_keys | Get API keys for a specific Supabase project |
SQLite MCP Server_append_insight | Add a business insight to the memo |
SQLite MCP Server_describe_table | Get the schema information for a specific table |
SQLite MCP Server_read_query | Execute a SELECT query on the SQLite database |
SQLite MCP Server_write_query | Execute an INSERT, UPDATE, or DELETE query on the SQLite database |
SQLite MCP Server_create_table | Create a new table in the SQLite database |
SQLite MCP Server_list_tables | List all tables in the SQLite database |
PostgreSQL_query | Run a read-only SQL query |
MySQL MCP Server_execute_sql | Execute an SQL query on the MySQL server |
BigQuery MCP Server_query | Run a read-only BigQuery SQL query |
Slack MCP Server_slack_list_channels | List public channels in the workspace with pagination |
Slack MCP Server_slack_post_message | Post a new message to a Slack channel |
Slack MCP Server_slack_reply_to_thread | Reply to a specific message thread in Slack |
Slack MCP Server_slack_add_reaction | Add a reaction emoji to a message |
Slack MCP Server_slack_get_channel_history | Get recent messages from a channel |
Slack MCP Server_slack_get_thread_replies | Get all replies in a message thread |
Slack MCP Server_slack_get_users | Get a list of all users in the workspace with their basic profile information |
Slack MCP Server_slack_get_user_profile | Get detailed profile information for a specific user |
mcp-server-youtube-transcript_get_transcript | Extract transcript from a YouTube video URL or ID |
MCP-Server-Playwright_browser_navigate | Navigate to a URL |
MCP-Server-Playwright_browser_screenshot | Take a screenshot of the current page or a specific element |
MCP-Server-Playwright_browser_click | Click an element on the page using CSS selector |
MCP-Server-Playwright_browser_click_text | Click an element on the page by its text content |
MCP-Server-Playwright_browser_fill | Fill out an input field |
MCP-Server-Playwright_browser_select | Select an element on the page with Select tag using CSS selector |
MCP-Server-Playwright_browser_select_text | Select an element on the page with Select tag by its text content |
MCP-Server-Playwright_browser_hover | Hover an element on the page using CSS selector |
MCP-Server-Playwright_browser_hover_text | Hover an element on the page by its text content |
MCP-Server-Playwright_browser_evaluate | Execute JavaScript in the browser console |
mcp-server-rag-web-browser_search | Search phrase or a URL at Google and return crawled web pages as text or Markdown |
mcp-server-qdrant_qdrant-store-memory | Keep the memory for later use, when you are asked to remember something. |
mcp-server-qdrant_qdrant-find-memories | Look up memories in Qdrant. Use this tool when you need to:
|
mcp-simple-pubmed_search_pubmed | Search PubMed for medical and life sciences research articles. You can use these search features:
Examples:
The search will return:
Note: Use quotes around multi-word terms for best results. |
mcp-simple-pubmed_get_paper_fulltext | Get full text of a PubMed article using its ID. |
mcp-snyk_scan_repository | Scan a repository for security vulnerabilities using Snyk |
mcp-snyk_scan_project | Scan an existing Snyk project |
mcp-server-tmdb_search_movies | Search for movies by title or keywords |
mcp-server-tmdb_get_recommendations | Get movie recommendations based on a movie ID |
mcp-server-tmdb_get_trending | Get trending movies for a time window |
cmd-mcp-server_execute_command | Execute a command and return its output. Commands run in a persistent shell session by default. Use newSession: true to run in a new shell instance. |
cmd-mcp-server_execute_ssh_command | Execute a command on a remote server via SSH. Commands run in a persistent SSH session by default. Use newSession: true to run in a new session. |
mcp-knowledge-graph_create_entities | Create multiple new entities in the knowledge graph |
mcp-knowledge-graph_create_relations | Create multiple new relations between entities in the knowledge graph. Relations should be in active voice |
mcp-knowledge-graph_add_observations | Add new observations to existing entities in the knowledge graph |
mcp-knowledge-graph_delete_entities | Delete multiple entities and their associated relations from the knowledge graph |
mcp-knowledge-graph_delete_observations | Delete specific observations from entities in the knowledge graph |
mcp-knowledge-graph_delete_relations | Delete multiple relations from the knowledge graph |
mcp-knowledge-graph_read_graph | Read the entire knowledge graph |
mcp-knowledge-graph_search_nodes | Search for nodes in the knowledge graph based on a query |
mcp-knowledge-graph_open_nodes | Open specific nodes in the knowledge graph by their names |
salesforce-mcp-server_query | Execute a SOQL query on Salesforce |
salesforce-mcp-server_tooling-query | Execute a query against the Salesforce Tooling API |
salesforce-mcp-server_describe-object | Get detailed metadata about a Salesforce object |
salesforce-mcp-server_metadata-retrieve | Retrieve metadata components from Salesforce |
mcp-server-data-exploration_load_csv | Load CSV File Tool Purpose: Load a local CSV file into a DataFrame. Usage Notes: If a df_name is not provided, the tool will automatically assign names sequentially as df_1, df_2, and so on. |
mcp-server-data-exploration_run_script | Python Script Execution Tool Purpose: Execute Python scripts for specific data analytics tasks. Allowed Actions 1. Print Results: Output will be displayed as the scripts stdout. 2. [Optional] Save DataFrames: Store DataFrames in memory for future use by specifying a save_to_memory name. Prohibited Actions 1. Overwriting Original DataFrames: Do not modify existing DataFrames to preserve their integrity for future tasks. 2. Creating Charts: Chart generation is not permitted. |
llm-context_lc-project-context | IMPORTANT: First check if project context is already available in the conversation before making any new requests. Use lc-get-files for retrieving specific files, and only use this tool when a broad repository overview is needed. Generates a structured repository overview including: 1) Directory tree with file status ( full, outline, excluded) 2) Complete contents of key files 3) Smart outlines highlighting important definitions in supported languages. The output is customizable via profiles that control file inclusion rules and presentation format. The assistant tracks previously retrieved project context in the conversation and checks this history before making new requests. |
llm-context_lc-get-files | IMPORTANT: Check previously retrieved file contents before making new requests. Retrieves (read-only) complete contents of specified files from the project. For this project, this is the preferred method for all file content analysis and text searches - simply retrieve the relevant files and examine their contents. The assistant cannot modify files with this tool - it only reads their contents. |
llm-context_lc-list-modified-files | IMPORTANT: First get the generation timestamp from the project context. Returns a list of paths to files that have been modified since a given timestamp. This is typically used to track which files have changed during the conversation. After getting the list, use lc-get-files to examine the contents of any modified files of interest. |
mcp-hfspace_available-files | A list of available file and resources. If the User requests things like 'most recent image' or 'the audio' use this tool to identify the intended resource.This tool returns 'resource uri', 'name', 'size', 'last modified' and 'mime type' in a markdown table |
mcp-hfspace_FLUX_1-schnell-infer | Call the FLUX.1-schnell endpoint /infer |
e2b-mcp-server_run_code | Run python code in a secure sandbox by E2B. Using the Jupyter Notebook syntax. |
coincap-mcp_bitcoin_price | Get realtime bitcoin price |
coincap-mcp_get_crypto_price | Get realtime crypto price on crypto |
coincap-mcp_list_assets | Get all available crypto assets |
cli-mcp-server_run_command | Allows command (CLI) execution in the directory: /app Available commands: pwd, cat, echo, find, ls, grep Available flags: -l, -h, --help, -v, -a, -r Note: Shell operators (&&, |, >, >>) are not supported. |
cli-mcp-server_show_security_rules | Show what commands and operations are allowed in this environment. |
mcp-server-kubernetes_list_pods | List pods in a namespace |
mcp-server-kubernetes_list_deployments | List deployments in a namespace |
mcp-server-kubernetes_list_services | List services in a namespace |
mcp-server-kubernetes_list_namespaces | List all namespaces |
mcp-server-kubernetes_create_pod | Create a new Kubernetes pod |
mcp-server-kubernetes_create_deployment | Create a new Kubernetes deployment |
mcp-server-kubernetes_delete_pod | Delete a Kubernetes pod |
mcp-server-kubernetes_describe_pod | Describe a Kubernetes pod (read details like status, containers, etc.) |
mcp-server-kubernetes_cleanup | Cleanup all managed resources |
openrpc-mpc-server_rpc_call | Call any JSON-RPC method on a server with parameters. A user would prompt: Call method <method> on <server url> with params <params> |
openrpc-mpc-server_rpc_discover | This uses JSON-RPC to call |